python添加子图使用什么函数 Python绘制子图

主机教程 建站分享 2年前 (2022-11-21) 214次浏览

文章摘要:python添加子图使用什么函数 Python绘制子图

python中使用matplotlib模块的add_subplot函数添加子图,具体方法如下: from ma […]

python中使用matplotlib模块的add_subplot函数添加子图,具体方法如下:

from matplotlib import pyplot as plt #导入matplotlib模块

fig = plt.figure()

ax1 = fig.add_subplot(231)

ax2 = fig.add_subplot(232)

ax3 = fig.add_subplot(233)

ax4 = fig.add_subplot(234)

ax5 = fig.add_subplot(235)

ax6 = fig.add_subplot(236)

plt.grid(True)

plt.show()

效果图:


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python添加子图使用什么函数 Python绘制子图
文章链接:http://www.7966.org/post/15402.html
转载请注明出处

喜欢 (0)