我试图共享两个子坐标轴,但是在创建图形之后,我需要共享x轴。因此,例如,我创建了这个图:import numpy as npimport matplotlib.pyplot as pltt= 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 axisplt.show()除了插入注释,我将插入一些代码以共享两个x轴。我没有找到任何线索我可以做到这一点。有一些属性 _shared_x_axes,_shared_x_axes当我检查数字轴(fig.get_axes())时,我不知道如何链接它们。
添加回答
举报
0/150
提交
取消