Matplotlib 动画在 IPython Notebook 中不起作用?
要在 matplotlib 中制作动画,可以采取以下步骤:-
设置图像大小并调整子图像之间的边距和周围的边距。
创建形状为 10X10 维度的随机数据。
使用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()
输出
广告