假設我有以下代碼(的matplotlib gridspec tutorial修改版本)劇情副區在單獨的圖軸在matplotlib
import matplotlib.pyplot as plt
def make_ticklabels_invisible(fig):
for i, ax in enumerate(fig.axes):
ax.text(0.5, 0.5, "ax%d" % (i+1), va="center", ha="center")
for tl in ax.get_xticklabels() + ax.get_yticklabels():
tl.set_visible(False)
plt.figure(0)
ax1 = plt.subplot2grid((3,3), (0,0), colspan=3)
ax2 = plt.subplot2grid((3,3), (1,0), colspan=2)
ax3 = plt.subplot2grid((3,3), (1, 2), rowspan=2)
ax4 = plt.subplot2grid((3,3), (2, 0))
plt.subplot2grid((3,3), (2, 1)) # OOPS! Forgot to store axes object
plt.suptitle("subplot2grid")
make_ticklabels_invisible(plt.gcf())
plt.show()
這導致
我怎樣才能「提取」 ax5
和將其'全屏'繪製在單獨的圖中而不需要必須重新創建劇情?
請發佈您正在使用的代碼來生成您在上面看到的圖。總是發佈你的代碼,這使得其他人更容易幫助你。 –
感謝您的提示。我已經重新制定了這個問題。乾杯! – Milo