我相信matplotlib還沒有在3D中設置正確的等軸......但是我發現了一些前段時間(我不記得是在哪裏)使用它的技巧。這個概念是在你的數據周圍創建一個假立方體邊界框。 可以用下面的代碼測試:
from mpl_toolkits.mplot3d import Axes3D
from matplotlib import cm
import matplotlib.pyplot as plt
import numpy as np
fig = plt.figure()
ax = fig.gca(projection='3d')
ax.set_aspect('equal')
X = np.random.rand(100)*10+5
Y = np.random.rand(100)*5+2.5
Z = np.random.rand(100)*50+25
scat = ax.scatter(X, Y, Z)
# Create cubic bounding box to simulate equal aspect ratio
max_range = np.array([X.max()-X.min(), Y.max()-Y.min(), Z.max()-Z.min()]).max()
Xb = 0.5*max_range*np.mgrid[-1:2:2,-1:2:2,-1:2:2][0].flatten() + 0.5*(X.max()+X.min())
Yb = 0.5*max_range*np.mgrid[-1:2:2,-1:2:2,-1:2:2][1].flatten() + 0.5*(Y.max()+Y.min())
Zb = 0.5*max_range*np.mgrid[-1:2:2,-1:2:2,-1:2:2][2].flatten() + 0.5*(Z.max()+Z.min())
# Comment or uncomment following both lines to test the fake bounding box:
for xb, yb, zb in zip(Xb, Yb, Zb):
ax.plot([xb], [yb], [zb], 'w')
plt.grid()
plt.show()
ž數據是大約比x和y大一個數量級,但即使有等於軸線選項,matplotlib自動定標Z軸:
但如果添加邊框,您獲得正確的縮放:
謝謝。它很棒! – Olexandr
在這種情況下,你甚至不需要'equal'語句 - 它總是相等的。 – Olexandr
你可能需要注意調用一個變量「scat」...... – Ludwik