web-dev-qa-db-ja.com

ジュピター| 3Dグラフを回転させる方法

Python Jupyterノートブックでグラフを回転させる方法についてはわかりません、私にとっては静的であり、マウスの動きで回転しない

from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt

fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')

x =[1,2,3,4,5,6,7,8,9,10]
y =[5,6,2,3,13,4,1,2,4,8]
z =[2,3,3,3,5,7,9,11,9,10]

ax.scatter(x, y, z, c='r', marker='o')

ax.set_xlabel('X Label')
ax.set_ylabel('Y Label')
ax.set_zlabel('Z Label')

plt.show()

enter image description here

13
Vineet

対話性を有効にするには、matplotlibのnotebookバックエンドを使用する必要があります。これを行うには、%matplotlib notebookを実行します。

これは、何かをプロットする前に行う必要があります。例:

import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import axes3d    

%matplotlib notebook

fig = ...
36
Hannes Ovrén