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