#如果在jupyter中运行,请加入本句话
%matplotlib notebook
import matplotlib as mpl
import matplotlib.pyplot as plt
from matplotlib.animation import FuncAnimation
fig, ax = plt.subplots() #生成轴和fig, 可迭代的对象
x, y= [], [] #用于接受后更新的数据
line, = plt.plot([], [], '.-') #绘制线对象,plot返回值类型,要加逗号
#------说明--------#
#核心函数包含两个:
#一个是用于初始化画布的函数init()
#另一个是用于更新数据做动态显示的update()
xlist=list(range(11))
ylist=list(range(0,200,20))+[110]
def init():
#初始化函数用于绘制一块干净的画布,为后续绘图做准备
ax.set_xlim(0, 100) #初始函数,设置绘图范围
ax.set_ylim(0, 300)
return line
def update(step): #通过帧数来不断更新新的数值
x.append(xlist[step])
y.append(ylist[step]) #计算y
line.set_data(x, y)
return line
#fig 是绘图的画布
#update 为更新绘图的函数,step数值是从frames 传入
#frames 数值是用于动画每一帧的数据
ani = FuncAnimation(fig, update, frames=xlist,
init_func=init,interval=20,repeat=False)
plt.show()
?
?
|