matplotlib.pyplot中add_subplot方法参数111的含义

来源:互联网 发布:恒腾网络 被抛弃了 编辑:程序博客网 时间:2024/06/07 14:23

这里默认已经安装Python及已安装matplotlib、numpy、scipy、six等库

>引自:http://www.codeweblog.com/matplotlib-pyplot中add_subplot方法参数111的含义/

 #引入对应的库函数import matplotlib.pyplot as pltfrom 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 pltfrom 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()

这里写图片描述

0 0