2つのサブプロット軸を共有しようとしていますが、図の作成後に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 axis
plt.show()
コメントの代わりに、両方のx軸を共有するコードを挿入します。どうすればそれができるのか、手がかりが見つかりませんでした。いくつかの属性があり
、図の軸()を確認する_shared_x_axes
と_shared_x_axes
、fig.get_axes()
それらをリンクする方法がわかりません。