但我也想使用 ax.twinx() 共享 2D 绘图的 x 轴,就像我在这里的单独绘图中所做的那样:
但是,当我将它添加到包括 3D 等高线图的 ax 时(例如“ax2 = ax.twinx()”),我收到一个错误:AttributeError: 'YAxis' object has no attribute 'tick_left'。您对此有任何解决方法的想法吗?谢谢你。这是我的代码的相关部分。
fig = plt.figure(figsize = (10,10))
ax = fig.add_subplot(projection='3d')
X,Y = np.meshgrid(time_Raw1[t1:t],list(reversed(range(100))))
ax.plot_surface(X,Y, csd_matrix,cmap =cm.seismic, alpha = 0.5)
ax.contourf(X, Y, csd_matrix, offset=np.min(csd_matrix), levels=levels, cmap=cmap)
ax2 = ax.twinx()
ax2.plot(time_Raw1[t1:t],channel_data, color='k', clip_on=False)
plt.show()