使用Matplotlib动画更新X轴值
要使用Matplotlib动画更新X轴值,我们可以按照以下步骤进行 –
- 设置图像大小并调整子图之间和周围的填充。
- 创建一个图和一组子图。
- 使用numpy创建x和y数据点。
- 使用plot方法在轴(ax)上绘制x和y数据点。
- 通过重复调用设置X轴值的函数animate来制作动画。
- 要显示图像,请使用 show() 方法。
示例
import matplotlib.pylab as plt
import matplotlib.animation as animation
import numpy as np
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
fig, ax = plt.subplots()
x = np.linspace(0, 15, 100)
y = np.sin(x)
ax.plot(x, y, lw=7)
def animate(frame):
ax.set_xlim(left=0, right=frame)
ani = animation.FuncAnimation(fig, animate, frames=10)
plt.show()