matplotlib子图中的大量图

时间:2017-06-16 06:11:24

标签: matplotlib subplot

我正在尝试使用matplotlib.pyplot.subplots绘制38个图,但图表太小而且彼此叠加。

N = np.linspace(3,40,38,dtype=int)

plt.figure(1, figsize=(12,2))

for i in N:
    plt.subplot(38,1,i-2)
    plt.plot(N,i*N)
    plt.subplots_adjust(hspace = 5)

如何修改此代码以便我可以清楚地看到各个图?

0 个答案:

没有答案