5

x値を増やしてアニメーションを実行することで、変更と例を試みています。x軸の目盛りラベルを更新してx値に従って更新したい。

1.2でアニメーション機能(特にFuncAnimation)を使用しようとしています。xlimitを設定できますが、目盛りラベルが更新されません。目盛りラベルも明示的に設定しようとしましたが、これは機能しません。

私はこれを見ました:matplotlib軸/ティックのアニメーション化とanimation.pyのbboxを調整しようとしましたが、機能しませんでした。私はmatplotlibにかなり慣れておらず、この問題に対処するために実際に何が起こっているのかについて十分に理解していないので、助けていただければ幸いです。

ありがとうございました

"""
Matplotlib Animation Example

author: Jake Vanderplas
email: vanderplas@astro.washington.edu
website: http://jakevdp.github.com
license: BSD
Please feel free to use and modify this, but keep the above information. Thanks!
"""

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(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(i, i+2, 1000)
    y = np.sin(2 * np.pi * (x - 0.01 * i))
    line.set_data(x, y)
    ax.set_xlim(i, i+2)

    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()
4

1 に答える 1

8

matplotlib軸/ティックのアニメーション化Pythonmatplotlibブリットを図の軸または側面にブリットするを参照してください。、およびmatplotlibのアニメーションタイトル

簡単な答えは削除ですblit=True

anim = animation.FuncAnimation(fig, animate, init_func=init,
                           frames=200, interval=20)

変更されたアーティストのみがいる場合はblit = True(すべてのアーティストを再描画するのではなく)再描画されるため、レンダリングがより効率的になります。アーティストは、update-function(この場合)から返された場合、変更済みとしてマークされanimateます。もう1つの詳細は、アーティストは、コードがで機能する方法で軸の境界ボックスにいる必要があるということanimation.pyです。これに対処する方法については、上部のリンクの1つを参照してください。

于 2013-01-20T05:36:43.150 に答える