要為Matplotlib圖表添加動態(tài)元素,可以使用FuncAnimation
函數(shù)來實現(xiàn)。下面是一個簡單的例子:
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.animation import FuncAnimation
# 創(chuàng)建一個圖表
fig, ax = plt.subplots()
xdata, ydata = [], []
line, = ax.plot([], [], 'r-')
# 初始化函數(shù),用于繪制空白圖表
def init():
ax.set_xlim(0, 2*np.pi)
ax.set_ylim(-1, 1)
return line,
# 更新函數(shù),用于更新圖表中的數(shù)據(jù)
def update(frame):
xdata.append(frame)
ydata.append(np.sin(frame))
line.set_data(xdata, ydata)
return line,
# 創(chuàng)建動畫
ani = FuncAnimation(fig, update, frames=np.linspace(0, 2*np.pi, 128),
init_func=init, blit=True)
plt.show()
在這個例子中,我們創(chuàng)建了一個簡單的正弦波圖表,并通過FuncAnimation
函數(shù)在圖表中添加了動態(tài)元素。update
函數(shù)用于更新圖表中的數(shù)據(jù),init
函數(shù)用于初始化圖表。我們可以通過調(diào)整frames
參數(shù)來改變動畫的幀數(shù),以及調(diào)整其他參數(shù)來自定義圖表的樣式。