I\'d like to have a batch file in one folder with a python
script. The batch file should call the script in IPython
and plot the figures inline / embed
How to run a python script with IPython, showing plots embedded?
ipython qtconsole
.jupyter qtconsole
Do I need to use pylab or can I just import matplotlib.pyplot in the script?
%matplotlib inline
prior to importing matplotlib.pyplot.Is %pylab inline / %matplotlib inline to be used or not?
%matplotlib inline
.