5

我试图通过使动画在增加 x 值时运行来修改和示例。我想更新 x 轴刻度标签以根据 x 值进行更新。

我正在尝试使用 1.2 中的动画功能(特别是 FuncAnimation)。我可以设置 xlimit 但刻度标签没有更新。我也尝试过明确设置刻度标签,但这不起作用。

我看到了这个:Animating matplotlib axes/ticks,我试图调整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

请参阅Animating matplotlib axes/tickspython matplotlib blit to axes or side of the figure?, 和matplotlib 中的动画标题

简单的答案是删除blit=True

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

如果您blit = True只有已更改的艺术家被重新绘制(而不是重新绘制所有艺术家),这会使渲染更有效。如果从更新函数(在本例中animate)返回艺术家,则将其标记为已更改。另一个细节是艺术家必须与代码的工作方式在坐标轴边界框中animation.py。有关如何处理此问题,请参阅顶部的链接之一。

于 2013-01-20T05:36:43.150 回答