• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

matplotlib绘制子图

武飞扬头像
呀比小饼干
帮助5

matplotlib绘制子图
学新通
matplotlib绘制子图的两种方式:
1.使用面向对象的api:
add_subplot添加一个绘制一个,suplots画之前已经知道要画多少个

# oop方式
fig = plt.figure()
# type(fig)
ax1 = fig.add_subplot(2,2,1)
ax2 = fig.add_subplot(2,2,2)
ax3 = fig.add_subplot(2,2,3)
ax4 = fig.add_subplot(2,2,4)
ax1.set_title('first')

学新通

# oop suplots
fig = plt.figure()
axes = fig.subplots(2,3)
# axes[0][0].set_title('first')
# axes[0][2].set_title('third') 
axes[0,0].set_title('first')
axes[0,2].set_title('third')  # 与axes[0][2]效果一样

学新通
2.使用pyplot的api:
直接调用subplot和subplots函数

# pyplot api
ax1 = plt.subplot(2,2,1)
ax2 = plt.subplot(2,2,2)
ax3 = plt.subplot(2,2,3)
ax4 = plt.subplot(2,2,4)
ax1.set_title('first')
plt.title('test')  # plt.title()默认加到生成的最新的子图上

学新通

# pyplot api subplots
fig,axes = plt.subplots(2,3)
axes[0,0].set_title('first')
axes[1,2].set_title('last')
x = [1,2,3,4,5]
y = [x**2 for x in x]
axes[1,2].plot(x,y)
plt.show()

学新通

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /boutique/detail/tanhfibgha
系列文章
更多 icon
同类精品
更多 icon
继续加载