Friday, March 28, 2014

Python notebook

I recently discovered the ipython notebook ability which is pretty sweet. Here are the things I need to remember how to do:

Set PythonPath to include own packages
In order to automate importing user created modules, you can create a file in ~/.local/lib/python3.4/site-packages (or whatever version you are using) that contains a list of paths to add to the PYTHONPATH
The more automated way to do this I got from this site.

Magics

Plot graphs inline instead of in a  separate window

%matplotlib inline

Load module code
%load http://matplotlib.sourceforge.net/mpl_examples/pylab_examples/integral_demo.py
or 
%load <path>/mycode.py 

No comments:

Post a Comment