标签: 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)