jonjoncardoso / ds105l-w11-demo-got-networks

A demo of network analysis using data about Game of Thrones (the TV show, not the book series).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

πŸ—“οΈ Week 11 – Applications II: text mining & network analysis

DS105L – Data for Data Science

AUTHOR: Dr. Jon Cardoso-Silva

DEPARTMENT: LSE Data Science Institute

DATE: 31 March 2023

"Ugh! Why is this a full GitHub repository and not just a .ipynb to download?" I hear you ask. So that you can practice with git and GitHub!

🐍 The Python setup

  1. Install Python 3.9 or higher on your computer.

  2. Install anaconda or miniconda on your computer.

  3. Create a new conda environment:

    conda create -y -n=venv-ds-105 python=3.10.8
  4. Activate the environment and make sure you have pip installed inside that environment:

    # the exact `activate` command will vary depending on your OS
    conda activate venv-ds-105 

πŸ’‘ Remember to activate this particular conda environment whenever you reopen VSCode/the terminal.

  1. Install required libraries

    pip install -r requirements.txt

Now, whenever you open a Jupyter Notebook, you should see the venv-ds-105 kernel available.

About

A demo of network analysis using data about Game of Thrones (the TV show, not the book series).

License:MIT License


Languages

Language:Jupyter Notebook 100.0%