If I start an ipython notebook with matplotlib inlined, is there a way to subsequently plot a figure so that it shows in the \"standard\", non-inlined, way, without having t
plt.ioff() and plt.ion() works like a charm in my Jupyter notebook with the notebook as backend (assuming the usual import matplotlib.pyplot as plt).
plt.ioff()
plt.ion()
notebook
import matplotlib.pyplot as plt