注意
转到结尾 下载完整的示例代码。或通过 JupyterLite 或 Binder 在浏览器中运行此示例
Matplotlib 动画支持#
显示 Matplotlib 动画,它应该最终被很好地嵌入到下面。
为了启用对动画的支持,需要将 'matplotlib_animations'
设置为 True
在 sphinx gallery 配置 中。
import matplotlib.animation as animation
import matplotlib.pyplot as plt
import numpy as np
# Adapted from
# https://matplotlib.net.cn/gallery/animation/basic_example.html
def _update_line(num):
line.set_data(data[..., :num])
return (line,)
fig, ax = plt.subplots()
data = np.random.RandomState(0).rand(2, 25)
(line,) = ax.plot([], [], "r-")
ax.set(xlim=(0, 1), ylim=(0, 1))
ani = animation.FuncAnimation(fig, _update_line, 25, interval=100, blit=True)
脚本总运行时间:(0 分钟 2.310 秒)
估计内存使用情况:176 MB