ฉันกำลังพยายามแบ่งปันแกนย่อยสองแกน แต่ฉันต้องการแบ่งปันแกน 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()
Instead of the comment I would insert some code to share both x axis.
I didn't find any clue how i can do that. There are some attributes
_shared_x_axes
and _shared_x_axes
when i check to figure axis (fig.get_axes()
) but I don't know how to link them.