Programming

  minte9
LearnRemember



Packages / Jupyter

Developing and presenting data science projects
A notebook integrates code and its output 

virtualenv ./notebook

Notebook

With Jupyter Notebook you can share live code with others.
 
virtualenv ./notebook     # create env
. notebook/bin/activate   # load and activate

pip install jupyter       # packages
pip install pandas

echo 'notebook/' > .gitignore
echo '.ipynb_checkpoints/' >> .gitignore

jupyter notebook          # run

Name

The name is a reference to the three core programming languages supported.
 
Julia
Python
R





References


Related