官方英文文档
超简单示例(基本表格):
照常上最简单直观的代码:(demo1)
import matplotlib.pyplot as plt
dot=[3,4,2,1]
plt.plot(dot)
plt.ylabel('The name of the Y axis') #可以忽略,只是用来标注表的信息而已
plt.xlabel(' The name of the X axis') #可以忽略
plt.title("The name of the image's Theme") #可以忽略
plt.show()
plt.savefig('hehe.jpg')
输出:
还有一张叫做“haha.jpg”的图片会保存到当前项目的文件夹中。
输出多张表格 / 控制线条颜色与样式:
如果想要实现同时输出多张表格的可以参照下面的博客:(demo2)