我有一个与此处发布的问题类似的问题。sharex
不同之处在于,当我绘制两个通过和sharey
属性共享轴的子图时,我在绘图区域内得到了不需要的空白。即使在设置后空格仍然存在autoscale(False)
。例如,使用与上述帖子的答案类似的代码:
import matplotlib.pyplot as plt
import numpy as np
fig = plt.figure()
ax = fig.add_subplot(2, 1, 1)
ax.imshow(np.random.random((10,10)))
ax.autoscale(False)
ax2 = fig.add_subplot(2, 1, 2, sharex=ax, sharey=ax) # adding sharex and sharey
ax2.imshow(np.random.random((10,10)))
ax2.autoscale(False)
plt.show()
导致此图像。
我也尝试过ax.set_xlim(0, 10)
,并ax.set_xbound(0, 10)
按照这里的建议,但无济于事。我怎样才能摆脱多余的空白?任何想法,将不胜感激。