在已创建的子图之间共享轴

时间:2016-11-04 19:12:22

标签: python python-2.7 matplotlib

我知道我可以使用类似

的共享轴创建子图
import matplotlib.pyplot as plt
ax0 = plt.subplot(1,2,1)
ax1 = plt.subplot(1,2,2, sharex=ax0)

但是,有没有办法在创建ax1后共享轴?像

这样的东西
ax0 = plt.subplot(1,2,1)
ax1 = plt.subplot(1,2,2)

ax1.some_function(sharex=ax0)

0 个答案:

没有答案