我正在生成一个有两个子图的屏幕图:一个是图像,另一个是图形。图中的边距非常大。
如何调整数字周围的边距?
我搜索的大多数问题都涉及保存图像(bbox看起来很完美),并使用轴代替子图进行绝对定位。
以下是我用来生成图的代码:
def __init__(self, parent):
wx.Panel.__init__(self, parent)
...
self.figure, (self.picture, self.intensity) = \
plt.subplots(nrows=2, figsize=(12, 5))
self.figure.set_dpi(80)
#self.figure.subplots_adjust(left=0.1, right=0.9, top=0.9, bottom=0.1)
#self.picture.imshow(np.random.uniform()) #size=(5, 50)))
self.intensity.plot(np.random.random()) #size=641))
self.intensity.autoscale(axis='x', tight=True)
答案 0 :(得分:25)
查看plt.tight_layout()
或plt.subplots_adjust()
或fig.savefig(bbox_inches='tight')
。
使用subplots_adjust
,您可以调整大多数参数,而tight_layout()
和bbox_inches='tight'
或多或少是半自动的。
答案 1 :(得分:-3)
您还可以使用plt.set(),其中包含adjust plot菜单中给出的属性,例如: set(top = 0.82)等。