YouTip LogoYouTip

Jupyter Notebook Tutorial

Jupyter Notebook

Interactive computing environment for data science.

# Install
pip install jupyter
jupyter notebook

# Shortcuts
# Shift+Enter - run cell
# Esc+A - insert cell above
# Esc+B - insert cell below
# Esc+M - markdown cell
# Esc+Y - code cell

Magics

%matplotlib inline
%timeit range(1000)
!ls -la

Summary

  • Jupyter combines code, output, and markdown
  • Essential for data science and exploration
← LaTeX Tutorial - Getting StartjQuery UI Tutorial - Getting S β†’