我需要在matplotlib中生成一大堆垂直堆叠的图。结果将使用savefig
保存并在网页上查看,所以我不关心最终图像有多高,只要子图之间有间隔,这样它们就不会重叠。
不管我让这个数字有多大,次要情节似乎总是重叠的。
我的代码目前看起来像
import matplotlib.pyplot as plt
import my_other_module
titles, x_lists, y_lists = my_other_module.get_data()
fig = plt.figure(figsize=(10,60))
for i, y_list in enumerate(y_lists):
plt.subplot(len(titles), 1, i)
plt.xlabel("Some X label")
plt.ylabel("Some Y label")
plt.title(titles[i])
plt.plot(x_lists[i],y_list)
fig.savefig('out.png', dpi=100)