inline_figshow.py
23 lines
| 583 B
| text/x-python
|
PythonLexer
Fernando Perez
|
r6539 | """Manual test for figure.show() in the inline matplotlib backend. | ||
This script should be loaded for interactive use (via %load) into a qtconsole | ||||
MinRK
|
r15182 | or notebook initialized with the inline backend. | ||
Fernando Perez
|
r6539 | |||
Expected behavior: only *one* copy of the figure is shown. | ||||
For further details: | ||||
https://github.com/ipython/ipython/issues/1612 | ||||
https://github.com/matplotlib/matplotlib/issues/835 | ||||
""" | ||||
import numpy as np | ||||
import matplotlib.pyplot as plt | ||||
MinRK
|
r15182 | plt.ioff() | ||
Fernando Perez
|
r6539 | x = np.random.uniform(-5, 5, size=(100)) | ||
y = np.random.uniform(-5, 5, size=(100)) | ||||
f = plt.figure() | ||||
plt.scatter(x, y) | ||||
plt.plot(y) | ||||
f.show() | ||||