Exploring different options to visualize network data in Python (here Game of Thrones network)
Complimentary code for the medium Article "Visualizing Networks in Python "
Contents,
-
Files
- GoT_Network.ipynb: Jupyter notebook with code for Option 1 and 2 from article.
- dash_app.py: Dash app for option 3 in article.
-
Directory
- data: contains Game of Thrones network data in csv format for the first 5 books
- [Recommended] : use a virtual environment to avoid conflicting with your main installation
python -m venv .venv
- [Recommended] : activate the environnement : [ShellCommands] :
source ./.venv/bin/activate
- Install packages :
pip install -r requirements.txt
- Run the script :
python ./dash_app.py