赞
踩
plt.plot(x,y)
现在换成538样式:
plt.style.use(‘fivethirtyeight’) # 538统计样式
from IPython.display import HTML # 在实现动态的过程中必须引入的库
plt.plot(x,y)
import random
from itertools import count
index=count()
x1=[]
y1=[]
x1.append(next(index))
y1.append(random.randint(0,50))
plt.plot(x1,y1)
先来试试手动的效果:
该效果即我们要实现的动画。
def animate(i):
x1.append(next(index))
y1.append(random.randint(0,50))
plt.plot(x1,y1)
from matplotlib.animation import FuncAn
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。