This project aims to translate all of David Robinson's R screencasts into Python mainly using pandas, matplotlib and seaborn.
Recomended to create and activate an annaconda environment before running notebooks.
Command line into tidy_tuesday directory
cd your_path_to_directory
e.g.
cd Documents/tidy_tuesday
Create annaconda environment
conda create --name tidy_tues_env --file environment.yml
Acivate said environment
source activate tidy_tuesday_env
Start jupyter
cd notebooks
jupyter-notebook
Deactivate environment when done
conda deactivate