Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion examples/animation/simple_anim.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Animated line plot
==================

Output generate via :ref:`matplotlib.animation.Animation.to_jshtml`.
"""

import numpy as np
Expand All @@ -11,7 +12,7 @@

fig, ax = plt.subplots()

x = np.arange(0, 2*np.pi, 0.01)
x = np.arange(0, 2 * np.pi, 0.01)
line, = ax.plot(x, np.sin(x))


Expand Down