The following jupyter notebooks have been adapted from the Carpentries material Programming with Python
Episodes 1-8 have been covered:
- Python Fundamentals
- Analyzing Patient Data
- Visualizing Tabular Data
- Storing Multiple Values in Lists
- Repeating Actions with Loops
- Analyzing Data from Multiple Files
- Making Choices
- Creating Functions
- Start by downloading and installing python
- Then create a virtual environment and install all the dependances. Setting-up the virtual environment can be done from the terminal on osx and linux with the following commands:
python3 -m venv venv
source venv/bin/activate
python3 -m pip install -r requirements.txt
Then execute
jupyter lab
To launch JupyterLab
Alternatively: Anaconda (a data science platform that includes all the required software) can be used to run these notebooks. Here's a link to these setup instructions.