Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.13 KB

File metadata and controls

30 lines (24 loc) · 1.13 KB

The following jupyter notebooks have been adapted from the Carpentries material Programming with Python

Episodes 1-8 have been covered:

  1. Python Fundamentals
  2. Analyzing Patient Data
  3. Visualizing Tabular Data
  4. Storing Multiple Values in Lists
  5. Repeating Actions with Loops
  6. Analyzing Data from Multiple Files
  7. Making Choices
  8. Creating Functions

Installation

  1. Start by downloading and installing python
  2. 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.