グラフのアニメーションを出力したいのですが、以下のResultに示す結果しか出力してくれません。
このプログラムに限らずアニメーションそのものを表示してくれません。
使っている環境はSpyder(Python3.7)なのですが、最新のものにしていないせいでしょうか?
Python
1import numpy as np 2import matplotlib.pyplot as plt 3import matplotlib.animation as animation 4 5fig = plt.figure() 6x=np.arange(0,100,1) 7#私が追加しました 8 9def plot(data): 10 plt.cla() 11 #現在描写されているグラフを消去 12 rand=np.random.randn(100) 13 #100この乱数を生成 14 im=plt.plot(x,rand) 15 #グラフを生成 出典元ではim=plt.plot(rand) 16 17ani=animation.FuncAnimation(fig,plot,interval=100) 18plt.show() 19
Result
1runfile('C:/Users/motch/Desktop/Python実習/20210130_必要に応じたPython/funcanimation.py', wdir='C:/Users/motch/Desktop/Python実習/20210130_必要に応じたPython') 2<Figure size 432x288 with 0 Axes>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。