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 ccd1ffb commit 3645001Copy full SHA for 3645001
1 file changed
examples/pylab_examples/simple_plot_fps.py
@@ -2,11 +2,12 @@
2
Example: simple line plot.
3
Show how to make and save a simple line plot with labels, title and grid
4
"""
5
-from __future__ import print_function # not necessary in Python 3.x
+from __future__ import print_function # not necessary in Python 3.x
6
import matplotlib.pyplot as plt
7
import numpy as np
8
import time
9
10
+
11
plt.ion()
12
13
t = np.arange(0.0, 1.0 + 0.001, 0.001)
0 commit comments