使用matplotlib保存gif动图

import matplotlib.pyplot as plt
import matplotlib.animation as animation

# 数据准备
x = [1, 2, 3, 4, 5]
dist_val = [1, 4, 9, 16, 25]
points_x = [2, 4]
points_y = [4, 16]

# 创建一个新的Figure和轴对象
fig, ax = plt.subplots()

# 定义绘图函数,用于更新动画帧
def animate(i):
    ax.clear()  # 清除轴对象内容
    ax.plot(x[:i+1], dist_val[:i+1], color='blue')  # 绘制部分线条
    ax.scatter(points_x[:i+1], points_y[:i+1], color="green")  # 绘制部分散点
    ax.plot(points_x[:i+1], points_y[:i+1], color='red')  # 绘制部分线条

# 创建动画对象
ani = animation.FuncAnimation(fig, animate, frames=len(x), interval=500)

# 保存为GIF动图
ani.save('animation.gif', writer='imagemagick')

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值