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