Note
Go to the end to download the full example code. or to run this example in your browser via JupyterLite or Binder
Matplotlib animation support#
Show a Matplotlib animation, which should end up nicely embedded below.
In order to enable support for animations 'matplotlib_animations'
must be set to True
in the sphinx gallery
configuration.
import matplotlib.animation as animation
import matplotlib.pyplot as plt
import numpy as np
# Adapted from
# https://matplotlib.org/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)
Total running time of the script: (0 minutes 2.310 seconds)
Estimated memory usage: 176 MB