我想用 Python matplotlib 创建带有许多(100)个子图的图。我找不到合适的语法:
我想要类似的东西(这不起作用)
plt.subplot(10,10,i,X1, Y)
在 i 从 0 到 99 的循环中,然后
plt.show()
许多教程中都提供了语法,以应对只有少数子图的情况。那么,语法可以是
plt.close('all')
fig = plt.figure()
ax1 = plt.subplot(221)
ax2 = plt.subplot(223)
ax3 = plt.subplot(122)
example_plot(ax1)
example_plot(ax2)
example_plot(ax3)
plt.tight_layout()
对于我的问题,我想我不能使用与plt.subplot(10101)
我不理解的相同的语法,等等。
你有解决方案吗?
谢谢