模块:
from matplotlib.animation import FuncAnimation
主要调用的地方:
ani = FuncAnimation(fig=画布, func=更新函数, frames=总帧数, init_func=初始化函数, blit=True/False)
if __name__ == "__main__":
获取数据
定义画布
fig, ax = plt.subplots()
def init():
初始化函数
return ln,
def update(frame):
更新函数
return ln,
定义参数
ani = FuncAnimation(fig=画布, func=更新函数, frames=总帧数, init_func=初始化函数, blit=True/False)
plt.show()
ani.save('bodyshape.gif', writer='pillow', fps=1000)