是否可以在matplotlib中的两个图之间共享不同的轴?例如,除了共享x轴之外,我想与3d图的第三轴共享二维图的第二轴:
fig = plt.figure()
ax1 = fig.add_subplot(311, projection='3d')
ax1.scatter(x, y, z)
ax2 = fig.add_subplot(312,sharex=ax1)
ax2.scatter(x,z)
plt.show()
这意味着,我希望与第二个图的z轴共享一个图的y轴。任何的想法?非常感谢!