这里默认已经安装Python及已安装matplotlib、numpy、scipy、six等库
>引自:http://www.codeweblog.com/matplotlib-pyplot中add_subplot方法参数111的含义/
#引入对应的库函数
import matplotlib.pyplot as plt
from numpy import *
#绘图
fig = plt.figure()
ax = fig.add_subplot(349)
ax.plot(x,y)
plt.show()
其中,参数349的意思是:将画布分割成3行4列,图像画在从左到右从上到下的第9块,如下图:
![]()
那第十块怎么办,3410是不行的,可以用另一种方式(3,4,10)。
如果一块画布中要显示多个图怎么处理?
import matplotlib.pyplot as plt
from numpy import *
fig = plt.figure()
ax = fig.add_subplot(2,1,1)
ax.plot(x,y)
ax = fig.add_subplot(2,2,3)
ax.plot(x,y)
plt.show()
![]()
本文介绍了如何使用Matplotlib库中的add_subplot方法来绘制多个子图。通过实例演示了不同参数设置下子图的布局方式,并展示了如何在一个画布上同时展示多个不同的图表。
813

被折叠的 条评论
为什么被折叠?



