8

いくつかのグラフ アニメーションを作成するプロジェクトがあります。有向加重グラフを作成し、各ステップでいくつか変更します。アニメーションでそれらの変更を行いたいです。だから、私の質問はこれです:

Python を使用してアニメーションを作成することは可能ですか? また、できる場合、簡単なアニメーションをどのように作成しますか?

4

1 に答える 1

13

Matplotlib は python の標準的なグラフ作成ライブラリで、かなりまともなアニメーション パッケージが付属しています。Jake Vanderplas には、これを使用するための優れたチュートリアルがあります

このリンクから取得した場合、正弦波をアニメーション化する場合は、次の方法を使用します。

import numpy as np
from matplotlib import pyplot as plt
from matplotlib import animation

# First set up the figure, the axis, and the plot element we want to animate
fig = plt.figure()
ax = plt.axes(xlim=(0, 2), ylim=(-2, 2))
line, = ax.plot([], [], lw=2)

# initialization function: plot the background of each frame
def init():
    line.set_data([], [])
    return line,

# animation function.  This is called sequentially
def animate(i):
    x = np.linspace(0, 2, 1000)
    y = np.sin(2 * np.pi * (x - 0.01 * i))
    line.set_data(x, y)
    return line,

# call the animator.  blit=True means only re-draw the parts that have changed.
anim = animation.FuncAnimation(fig, animate, init_func=init,
           frames=200, interval=20, blit=True)

plt.show()

アニメーション ライブラリは、間隔 (この例では 20 と指定) ごとに関数 "animate" を呼び出します。関数はプロットを適切に更新する必要があります。この場合、set_data メソッドを使用して、正弦波データの配列である「line」を更新します。

于 2013-04-21T16:14:25.030 に答える