在 matplotlib 中使用等值线进行动画
若要在 matplotlib 中使用等值线进行动画处理,我们可以采取以下步骤
步骤
设置 figure 大小并调整子图之间及子图周围的边距。
为等值线图创建数据。
创建一个 figure 和一组子图。
通过反复调用函数 *animate* 生成动画,其中 animate() 方法更改等值线数据点。
若要显示 figure,请使用 Show() 方法。
示例
import numpy as np import matplotlib.pyplot as plt import matplotlib.animation as animation # Set the figure size plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True # Random data for the contour plot data = np.random.randn(800).reshape(10, 10, 8) # Create a figure and a set of subplots fig, ax = plt.subplots() # Method to change the contour data points def animate(i): ax.clear() ax.contourf(data[:, :, i], cmap='plasma') # Call animate method ani = animation.FuncAnimation(fig, animate, 5, interval=50, blit=False) # Display the plot plt.show()
输出
它将产生以下输出 −
广告