| ||
python 绘图的简易工具1
https://blog.csdn.net/weixin_43315203/article/details/115761518
add chart type:
http://mrdoc.zmister.com/project-18/doc-54/
matplotlib:
https://matplotlib.org/stable/contents.html
---------------------------------------------------
plot 用法
plt.plot(x, y, ls='-', lw=2, label='xxx', color='g')
--x: x轴上的值
--y: y轴上的值
--ls: 线条风格(linestyle)
--lw: 线条宽度(linewidth)
--label: 标签文本
---------------------------------------------------