matplotlib.pyplot

1.matplotlib.pyplot.figure(num,…)
给窗口命名

2.matplotlib.pyplot.plot(x,y,colorpointline,…)
画直线:(x,y)坐标 图像颜色 图像中点和线的样式

3.matplotlib.pyplot.xlabel()
matplotlib.pyplot.ylabel()

分别给xy轴命名

4.matplotlib.pyplot.title()
给图像起标题

5.matplotlib.pyplot.show()
绘制

6.matplotlib.pyplot.grid()
绘制网格

上一篇:matplotlib.pyplot.gca().set_xlim(初始值,末值) 与 matplotlib.pyplot.xticks()的区别


下一篇:matplotlib.pyplot与axes的关系 (matplotlib绘图)