2016-11-14 71 views
0

下面是使用matplotlib生成動畫的代碼。當我在Jupyter筆記本中運行它時,我還會在動畫圖形下面看到另一個靜態圖形。我如何刪除它?如何擺脫matplotlib.animation中的靜態圖形?

import numpy as np 
import matplotlib.pyplot as plt 
from matplotlib.animation import FuncAnimation 
from IPython.display import HTML 

fig, ax = plt.subplots() 

x = np.arange(0, 20, 0.1) 
ax.scatter(x, x + np.random.normal(0, 3.0, len(x))) 
line, = ax.plot(x, x - 5, 'r-', linewidth=2) 

def update(i): 
    label = 'timestep {0}'.format(i) 
    line.set_ydata(x - 5 + i) 
    ax.set_xlabel(label) 
    return line, ax 

anim = FuncAnimation(fig, update, frames=np.arange(0, 10), interval=200) 
HTML(anim.to_html5_video()) 

回答

0

我使用了一個名爲JSAnimation(見this example notebook from the Author)模塊。 要顯示動畫,只需撥打:

from JSAnimation.IPython_display import display_animation 
display_animation(anim)