要導(dǎo)出matplotlib動(dòng)態(tài)圖,可以使用以下方法:
import matplotlib.pyplot as plt
from matplotlib.animation import FuncAnimation
# 創(chuàng)建圖形和動(dòng)畫函數(shù)
fig, ax = plt.subplots()
def animate(i):
ax.cla() # 清除當(dāng)前軸上的內(nèi)容
ax.plot(x, y[i]) # 繪制新的幀
# 創(chuàng)建動(dòng)畫對象
ani = FuncAnimation(fig, animate, frames=len(y), interval=200)
# 保存為動(dòng)態(tài)圖像文件(例如gif)
ani.save('animation.gif', writer='pillow')
import matplotlib.pyplot as plt
from matplotlib.animation import Animation, FFMpegWriter
# 創(chuàng)建圖形和動(dòng)畫函數(shù)
fig, ax = plt.subplots()
def animate(i):
ax.cla() # 清除當(dāng)前軸上的內(nèi)容
ax.plot(x, y[i]) # 繪制新的幀
# 創(chuàng)建動(dòng)畫對象
ani = Animation(fig, animate, frames=len(y), interval=200)
writer = FFMpegWriter(fps=10) # 創(chuàng)建寫入器
# 保存為動(dòng)態(tài)圖像文件(例如mp4)
ani.save('animation.mp4', writer=writer)
這些方法可以將matplotlib動(dòng)態(tài)圖保存為不同格式的文件,如gif、mp4等。