Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 937 Bytes

README.md

File metadata and controls

36 lines (25 loc) · 937 Bytes

Learning Pandas

Binder

A collection of Jupyter notebooks based on pandas' documentation, for conveniently trying out examples.

You can run the notebooks online, courtesy of Binder.

Running locally

  1. Fetch the necessary files, and create a virtual environment:

    git clone https://github.com/Tim-Abwao/learning-pandas.git
    cd learning-pandas
    python3 -m venv venv
    source venv/bin/activate
  2. Install required packages:

    pip install -U pip
    pip install -r requirements.txt
  3. Launch JupyterLab and open one of the notebooks in /notebooks.

    jupyter-lab