Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 553918f commit 826f64fCopy full SHA for 826f64f
1 file changed
examples/animation/simple_anim.py
@@ -3,7 +3,7 @@
3
Animated line plot
4
==================
5
6
-Output generate via :ref:`matplotlib.animation.Animation.to_jshtml`.
+Output generate via `matplotlib.animation.Animation.to_jshtml`.
7
"""
8
9
import numpy as np
@@ -12,7 +12,7 @@
12
13
fig, ax = plt.subplots()
14
15
-x = np.arange(0, 2 * np.pi, 0.01)
+x = np.arange(0, 2*np.pi, 0.01)
16
line, = ax.plot(x, np.sin(x))
17
18
0 commit comments