matplotlibにはまだ修正されていない既知のバグがあります。
このコードスニペットを検討してください。y軸を逆にすると、目盛りが消え、z軸のパディングが変更されます。
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
ax.set_xlim3d(0,1)
ax.set_ylim3d(0,1)
ax.set_ylim3d(1,0)
plt.show()
それまでの間、誰かがこれに対する回避策を持っていますか?
ありがとう!