animation()関数に引数を渡す方法は? 、私はしようとしたが、dintが働いた。 animation.FuncAnimationの プロトタイプは()animation.FuncAnimation()の引数の受け渡し
クラスmatplotlib.animation.FuncAnimation(図、FUNC、フレーム=なし、init_func =なし、fargs =なし、save_count =なし、** kwargsから)塩基である:matplotlibの。 animation.TimedAnimation
私は以下のコードを貼り付けました。変更が必要ですか?
import matplotlib.pyplot as plt
import matplotlib.animation as animation
def animate(i,argu):
print argu
graph_data = open('example.txt','r').read()
lines = graph_data.split('\n')
xs = []
ys = []
for line in lines:
if len(line) > 1:
x, y = line.split(',')
xs.append(x)
ys.append(y)
ax1.clear()
ax1.plot(xs, ys)
plt.grid()
ani = animation.FuncAnimation(fig,animate,fargs = 5,interval = 100)
plt.show()
「何がうまくいかなかったか」を説明できますか?あなたは痕跡を戻しましたか? – tacaswell