Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 1.45 KB

File metadata and controls

37 lines (23 loc) · 1.45 KB

graph_visualisation_basics_with_Python

This repository contains the notebooks for graph visualisation basics with Python using packages such as SchemDraw, NetworkX, and graphviz. The notebooks are used for the following Medium posts in Towards Data Science:

Contributors

Himalaya Bir Shrestha

Installation

  • Download and clone this repository.

  • The virutal environment can be created using:

conda env create -n graphs --file graphs-environment.yml

  • Once the environment is installed, it can be activated using:

conda activate graphs

  • To create a kernel for the notebook:

python -m ipykernel install --user --name graphs --display-name "graphs"

Uninstallation

If the environment is not required anymore, it can also be removed easily using:

conda env remove -n graphs

To Do

  • Add notebooks for:
    • Flowcharts
    • Directed graphs using NetworkX
    • Directed graphs using graphviz