matplotlib.animation.TimedAnimation(fig, interval=200, repeat_delay=None, repeat=True, event_source=None, *args, **kwargs)[source]¶Animation subclass for time-based animation.
A new frame is drawn every interval milliseconds.
| Parameters: |
|
|---|
__init__(fig, interval=200, repeat_delay=None, repeat=True, event_source=None, *args, **kwargs)[source]¶Initialize self. See help(type(self)) for accurate signature.
Methods
__init__(fig[, interval, repeat_delay, …]) |
Initialize self. |
new_frame_seq() |
Creates a new sequence of frame information. |
new_saved_frame_seq() |
Creates a new sequence of saved/cached frame information. |
save(filename[, writer, fps, dpi, codec, …]) |
Saves a movie file by drawing every frame. |
to_html5_video([embed_limit]) |
Returns animation as an HTML5 video tag. |
to_jshtml([fps, embed_frames, default_mode]) |
Generate HTML representation of the animation |