web-dev-qa-db-ja.com

python-matplotlib-Jupyter Notebookで3Dプロットをインタラクティブに回転

this ビデオ(上から、下から、または右または左から決定した場合)で説明されているように、3Dプロットをインタラクティブに回転する方法はどのように考えられますか。 spyderまたはjupyter Notebookで3Dプロットを生成できますが、その後は静止したままであり、相互作用したり、視点の角度を回転/変更したりできません。

これがコードです:

from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
from matplotlib import cm
from matplotlib.ticker import LinearLocator, FormatStrFormatter
import numpy as np

fig = plt.figure()
ax = fig.gca(projection='3d')

scale = 8
# Make data.
X = np.arange(-scale, scale, 0.25)
Y = np.arange(-scale, scale, 0.25)
X, Y = np.meshgrid(X, Y)
Z = X**2 + Y**2

# Plot the surface.
surf = ax.plot_surface(X, Y, Z, cmap=cm.coolwarm,
                   linewidth=0, antialiased=False)

# Customize the z axis.
ax.set_zlim(0, 100)
ax.zaxis.set_major_locator(LinearLocator(10))
ax.zaxis.set_major_formatter(FormatStrFormatter('%.02f'))

# rotate the axes and update
for angle in range(0, 360):
   ax.view_init(30, 40)

# Add a color bar which maps values to colors.
fig.colorbar(surf, shrink=0.5, aspect=5)

plt.show()

事前にどうもありがとうございました!

5
ecjb

OK別の投稿で答えを見つけました:

IPythonノートブックで対話型Matplotlibウィンドウを開くにはどうすればよいですか?

次の行%matplotlib qtはスクリプトの最初に記述する必要があります+ jupyterノートブックを再起動する必要があります。

あなたの助けてくれてありがとう!

8
ecjb