This branch contains four notebooks:
- Introduction to data wrangling using pandas.
- Introduction to data cleaning.
- Introduction to machine learning.
- Introduction to data augmentation.
To run these notebooks, you can use docker, google colab, etc. The requirements are in environment.yml
In the following I will show you how to use conda. you can install miniconda from this link, if you don't have miniconda nor anaconda installed on your system
# navigate to the folder containing the environment.yml
conda env create -f environment.yml
conda activate wrangling
python3 -m ipykernel install --user --name wrangling --display-name "Python3 (wrangling)"
