改善matplotlib中的许多subplots的subplot大小/间距
这个问题非常相似,但不同之处在于,我的身材可能要大得多。
我需要在matplotlib中生成一大堆垂直堆积的图。 结果将被保存使用figsave并在网页上查看,所以我不在乎最终图像有多高,只要subpoots间隔,所以他们不重叠。
不pipe这个数字有多大,子图总是会重叠。
我的代码目前看起来像
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)
尝试使用plt.tight_layout
举一个简单的例子:
import matplotlib.pyplot as plt fig, axes = plt.subplots(nrows=4, ncols=4) fig.tight_layout() # Or equivalently, "plt.tight_layout()" plt.show()
没有严格的布局
与紧布局
您可以使用plt.subplots_adjust
更改子图之间的间距(源)
电话签名:
subplots_adjust(left=None, bottom=None, right=None, top=None, wspace=None, hspace=None)
参数含义(和build议的默认值)是:
left = 0.125 # the left side of the subplots of the figure right = 0.9 # the right side of the subplots of the figure bottom = 0.1 # the bottom of the subplots of the figure top = 0.9 # the top of the subplots of the figure wspace = 0.2 # the amount of width reserved for blank space between subplots hspace = 0.2 # the amount of height reserved for white space between subplots
实际的默认值由rc文件控制
我发现subplots_adjust(hspace = 0.001)是最终为我工作的。 当我使用space = None时,每个plot之间仍然有空白。 把它设置成非常接近零的值似乎迫使他们排队。 我在这里上传的并不是最优雅的一段代码,但你可以看到hspace是如何工作的。
import numpy as np import matplotlib.pyplot as plt import matplotlib.ticker as tic fig = plt.figure() x = np.arange(100) y = 3.*np.sin(x*2.*np.pi/100.) for i in range(5): temp = 510 + i ax = plt.subplot(temp) plt.plot(x,y) plt.subplots_adjust(hspace = .001) temp = tic.MaxNLocator(3) ax.yaxis.set_major_locator(temp) ax.set_xticklabels(()) ax.title.set_visible(False) plt.show()
import matplotlib.pyplot as plt fig = plt.figure(figsize=(10,60)) plt.subplots_adjust( ... )
plt.subplots_adjust方法:
def subplots_adjust(*args, **kwargs): """ call signature:: subplots_adjust(left=None, bottom=None, right=None, top=None, wspace=None, hspace=None) Tune the subplot layout via the :class:`matplotlib.figure.SubplotParams` mechanism. The parameter meanings (and suggested defaults) are:: left = 0.125 # the left side of the subplots of the figure right = 0.9 # the right side of the subplots of the figure bottom = 0.1 # the bottom of the subplots of the figure top = 0.9 # the top of the subplots of the figure wspace = 0.2 # the amount of width reserved for blank space between subplots hspace = 0.2 # the amount of height reserved for white space between subplots The actual defaults are controlled by the rc file """ fig = gcf() fig.subplots_adjust(*args, **kwargs) draw_if_interactive()
要么
fig = plt.figure(figsize=(10,60)) fig.subplots_adjust( ... )
图片的大小很重要。
“我试图搞乱hspace,但增加它似乎只是使所有的graphics更小而不解决重叠问题。”
因此,为了制作更多的空白空间并保留子图大小,整个图像需要更大。
你可以试试subplot_tool()
plt.subplot_tool()