Pylab Switching.ipynb
107 lines
| 8.3 KiB
| text/plain
|
TextLexer
In [3]:
# Should pop up a GUI window
%pylab qt
plot([1,2,3])
Out[3]:
In [4]:
# Should make an inline figure
%pylab inline
plot([1,2,3])
Out[4]:
In [11]:
# New GUI window--should *NOT* have the visual settings of inline
%pylab qt
plot([1,2,3])
Out[11]: