Matplotlib
数据可视化
TommyLiuZ
这个作者很懒,什么都没留下…
展开
-
005.matplotlib的子图
005.matplotlib的子图1. 说明plt.subplot(nrows, ncols, plot_number)将区域分成n个横轴,n个纵轴,plot_number指定现在在哪个区域区域编号:从左到右,从上到下,从1开始编号plt.subplot(3, 2, 4) plt.subplot(324) 上面两个式子表达的含义是相同的2.实例import numpy as npimport matplotlib.pyplot as pltdef f(t): ret原创 2021-05-09 19:16:01 · 239 阅读 · 0 评论 -
004.透明度
004.透明度1. 实例facecolor:设置前景颜色edgecolor :设置边框, 本处设置边框为Nonealpha:设置透明度.原创 2021-05-09 19:02:41 · 147 阅读 · 0 评论 -
003.添加图例和注解
003.添加图例1.示例2.legend函数官方文档:https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.legend.html#matplotlib.pyplot.legend使用参数版添加图例3.添加注解3.1 添加注解原创 2021-05-09 18:25:45 · 151 阅读 · 0 评论 -
002.matplotlib.pyplot坐标轴的操作
002.matplotlib.pyplot坐标轴的操作1.相关操作解决字体不好看的问题:采用正则表达加$的形式2.位置操作gca: get current axis返回四个边框设置轴消失原创 2021-05-09 16:16:13 · 224 阅读 · 0 评论 -
001.matplotlib.pyplot入门
001.matplotlib.pyplot入门1.简单程序画图plot方法显示图片show方法2.画多张图3.figure函数**matplotlib.pyplot.figure(num=None, figsize=None, dpi=None, facecolor=None, edgecolor=None, frameon=True, FigureClass=<class ‘matplotlib.figure.Figure’>, clear=False, kwargs)原创 2021-05-09 15:24:57 · 1343 阅读 · 5 评论