Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.33 KB

README.md

File metadata and controls

28 lines (20 loc) · 1.33 KB

A Gentle Introduction to Data Science with Python

Python is a capable and free (open source) programming language well-suited for analysis of data, including microbiome data. Together, we will go through a real-life example, re-analyzing microbiome - immune checkpoint inhibitor studies. We will touch on both the basics (loading in data, transforming, graphing, basic statistical analysis, and outputting data and figures), and use the examples to compare and contrast with some equivalents in R. This introduction should be suitable for those with no data analysis with code experience, but have some added dimensions for those familiar with R.

If you want to join along

  1. Please install Python version 3: https://www.python.org/downloads/release/python-385/
  • I suggest starting with vanilla python3. There are many different versions of python.
  1. Download this repository
  • This can be done via Code -> Download Zip above. Then unzip to a directory
  1. Open a command line (in windows, command; in mac, terminal)
  • Change to the directory of the downloaded repository
  1. Create a virtual environment python3 -m venv dang-env

  2. Activate the virutal environment source dang-env/bin/activate

  3. Upgrade pip3 pip3 install pip --upgrade

  4. Install the required packages pip3 install -r requirements.txt

  5. Start jupyter jupyter notebook