【发布时间】:2015-03-03 18:47:33
【问题描述】:
我无法使用 anaconda 运行 matplotlib 动画。我正在尝试在 Spyder 上运行它:
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()
但它给了我一个空白的情节。我直接在文档网站上使用它作为示例,但它不起作用。
【问题讨论】:
-
非常适合我link。我在 Ubuntu 14.04 x64 上使用 python 3.4。也许它的操作系统相关问题?
-
可能是那时。我正在运行 OS X Yosemite 10.10.1 并使用 Spyder 2.3.2 运行我的代码。
-
一定是代码以外的东西。您的代码可以正常工作。也许它的 python 版本,matplotlib 版本,osx 问题,......
标签: python matplotlib