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 to reload the notebook without the inline command?
I'd like to be able to have some figures inlined in the notebook, but others in the traditional interactive mode, where I can zoom and pan.
It depends on the exact configuration of your matplotlib, but you can switch between inline and one of 'osx', 'qt4', 'qt5', 'gtk3', 'wx', 'qt', 'gtk', 'tk' (some are aliases of other). just use
%matplotlib <the one you want>
to switch. Depending on conditions you migh have only access to one of these.