码迷,mamicode.com
首页 > 其他好文 > 详细

matplotlib的进阶使用

时间:2020-03-28 19:36:52      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:显示   size   image   src   mat   折线图   进阶   dpi   sha   

1. 使用matplotlib绘制多条折线图

使用多次plot方法

plt.plot(x, y_shanghai, label="上海")
plt.plot(x, y_beijing, color="r", linestyle="--", label="北京")

技术图片

 

2. 使用matplotlib绘制多张折线图

使用subplots创建画布

# 创建画布
fig, axes = plt.subplots(nrows=1, ncols=2, figsize=(20, 8), dpi=100)

# 绘制图形
axes[0].plot(x,y_shanghai, label=上海, color=r)
axes[1].plot(x,y_beijing, label=北京)

# 显示
plt.show()

技术图片

 

matplotlib的进阶使用

标签:显示   size   image   src   mat   折线图   进阶   dpi   sha   

原文地址:https://www.cnblogs.com/chao666/p/12588735.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!