最佳答案
我试图共享两个子图轴,但是我需要在创建图形之后共享 x 轴。例如,我创建了这个图形:
import numpy as np
import matplotlib.pyplot as plt
t = np.arange(1000)/100.
x = np.sin(2*np.pi*10*t)
y = np.cos(2*np.pi*10*t)
fig = plt.figure()
ax1 = plt.subplot(211)
plt.plot(t,x)
ax2 = plt.subplot(212)
plt.plot(t,y)
# some code to share both x axes
plt.show()
我想插入一些代码来共享两个 x 轴,而不是注释。
我该怎么做呢? 有一些相关的听起来属性吗
_shared_x_axes
和 _shared_x_axes
时,我检查数字轴(fig.get_axes()
) ,但我不知道如何联系他们。