如何将参数传递给Matplotlib中的animation.FuncAnimation()方法?
要在Python的Matplotlib中为等高线图传递参数给 animation.FuncAnimation() ,我们可以按照以下步骤操作 –
- 创建一个10 x 10维度的随机数据。
- 使用 subplots() 方法创建一个图形和一组子图。
- 使用 FuncAnimation() 类重复调用函数 func 创建动画。
- 为了在函数中更新等高线值,我们可以定义一个方法 animate() ,它可以在 FuncAnimation() 类中使用。
- 使用 show() 方法显示图形。
示例
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
data = np.random.randn(800).reshape(10, 10, 8)
fig, ax = plt.subplots()
def animate(i):
ax.clear()
ax.contourf(data[:, :, i])
ani = animation.FuncAnimation(fig, animate, 5, interval=50, blit=False)
plt.show()