pyplot 绘图
2019-10-15 本文已影响0人
137c
pyplot 中文文档:https://wizardforcel.gitbooks.io/matplotlib-user-guide/3.1.html
绘制直方图
a=[1,2,3,4,5]
plt.bar([5,4,3,2,1],a)
Out[22]: <BarContainer object of 5 artists>
plt.show()
image.png
绘制散点图
plt.scatter(x,y)
绘制曲线图
plt.plot(x)
绘制柱状图
plt.bar(x)