1. 7f51a0332edd0c675c2d314ca3e62df7ef041281 deps/ipython (8.4.0-33-g7f51a0332)
24 lines
583 B
Python
24 lines
583 B
Python
"""Manual test for figure.show() in the inline matplotlib backend.
|
|
|
|
This script should be loaded for interactive use (via %load) into a qtconsole
|
|
or notebook initialized with the inline backend.
|
|
|
|
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
|
|
|
|
plt.ioff()
|
|
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()
|