前提・実現したいこと
Pythonを使用しています。
- 実現したい内容 …
「 jupyter notebookで「https://qiita.com/MuAuan/items/a05a9823345ff75251ff」の記事を参考にanimationを作成したのですが、animationが表示されません。原因がよくわからないのですが、まれに表示されることがあるので混乱しています。」
実行したコードとその結果
実行したコード
このようなコードを実行しました。
python
1In[]: 2import numpy as np 3 4%matplotlib nbagg 5fig = plt.figure() 6ax = p3.Axes3D(fig) 7 8sample = np.array([[3., 2., 2., 2., 1., 1., 0., 0., 0., 0., 1., 1., 2., 2., 2., 2., 1., 9 1., 0., 0.], [1., 1., 1., 2., 2., 2., 2., 1., 1., 0., 0., 0., 0., 1., 1., 2., 2., 10 2., 2., 1.], [1.381831, 1.458556, 2.622311, 2.905993, 2.990125, 3.19616 , 11 3.410036, 3.541446, 3.706202, 3.873387, 3.992607, 4.150256, 12 4.400166, 4.549002, 4.732734, 4.884272, 5.044018, 5.22878 , 13 6.514542, 6.780305]]) 14 15 16def update(num, data, line): 17 line.set_data(data[:2, :num]) 18 line.set_3d_properties(data[2, :num]) 19 20N = len(sample[0]) 21line, = ax.plot(sample[0, 0:1], sample[1, 0:1], sample[2, 0:1]) 22ax.set_xlim3d([0.0, 6.0]) 23ax.set_xlabel('X') 24ax.set_ylim3d([0.0, 6.0]) 25ax.set_ylabel('Y') 26ax.set_zlim3d([0.0, 10]) 27ax.set_zlabel('Z') 28ani = animation.FuncAnimation(fig, update, N, fargs=(sample, line), interval=10) 29plt.show()
実行した結果
あなたの回答
tips
プレビュー