matplotlib基本概念
plt的基本属性和方法(1) plt.title -->标题(2) plt.xlabel/ylabel -->x坐标/y坐标(3) plt.figsize(8,6) --添加图像的长和宽8*6(4) plt.subplot --添加1个子图(5) plt.subplots --添加多个子图(6) plt.x(7) plt.plot(x, y) --在坐标上添加数据(8) fig = plt.figure() ...