1、matplotlib.pyplot绘图相关图像:
(1)容器类:图(figure)、坐标系(axes)、坐标轴(axis)、刻度(tick)
(2)基础类:线(line)、点(marker) 、文本(text)、图例(legend)、网格(gird)、 标题(title)
2、绘图的类型
(1)线型图:plot()
(2)直方图:hist()
(3)条形图:bar()
(4)饼图: pie()
(5)散点图:scatter()
(6)3D图: from mpl_tooklist,mplt3d import Axes3D
(7) 动态交互图:pyecharts
import matplotlib.pyplot as plt (导入第三方库,别名为plt)
(1)线形图:
plot()
plt.plot([(0,3),(1,6),(2,7),(3,0),(4,9)]) (默认为y轴数字,自动生成x坐标)
plt.plot([1,2,5,7,6])
plt.plot([1,2,5,7,6]),([3,6,7,0,9]) (第一个数组为x坐标,第二个数组为y坐标,系统自动生成0,1,2,。。。。)
plt.plot([2,5,6,3,2],[2,2,4,4,2])
plt.axis([0,10,0,10]) (设置坐标轴的取值范围,用数组表达不能使用数值)
plt.savefig('R&Q_pic/test0.png',dpi = 600)