Welcome to the Pandas Tutorial! In this tutorial we will go through some basic to intermediate concepts in Python
- How to load data and select subsets of it
- How to aggregate data
- How to concisely manipulate data using
- Putting it all together - analyse a dataset using the functions we've learned
It's easy to get started - just press the binder button below and you'll be all set!
If you want this running on your local computer, it's fairly easy too!
Make sure you have git and conda installed
git clone https://github.com/andersbogsnes/pandas_tutorial.git
cd pandas_tutorial
conda env create
- Windows:
activate pandas_tutorial
- Everything else:
conda activate pandas_tutorial
jupyter lab
python -m venv venv
-
Non-Windows
source venv/bin/activate
-
Windows
env\Scripts\activate.bat
pip install -r requirements.txt
jupyter lab