Skip to content
Snippets Groups Projects
Commit 15b3e1d7 authored by gsingh58's avatar gsingh58
Browse files

a starter.ipynb file deleted

parent 13ab0a06
No related branches found
No related tags found
No related merge requests found
Pipeline #755322 passed
%% Cell type:markdown id:2f385b68 tags:
# Graphs
Today: graph visualization (graphviz)
Upcoming: graph computation (from classes)
**Nodes**: some kind of entity. **Edges**: relationships between those entities.
%% Cell type:markdown id:3d6757a4 tags:
### Examples
* Git: https://www.oreilly.com/library/view/git-pocket-guide/9781449327507/ch01.html#fig0101
* Political Allignment: https://www.reddit.com/r/dataisbeautiful/comments/1q7b3s/voting_relationships_between_senators_in_the/
* Evolution: https://commons.wikimedia.org/wiki/File:The_Ancestors_Tale_Mammals_Phylogenetic_Tree_in_mya.png
* Friendship: https://facebook.com/notes/facebook-engineering/visualizing-friendships/469716398919/
* Accounting: https://wisc-ds-projects.github.io/f19/past/langston-ellen-zan.pdf#page=22
* Transit: https://arxiv.org/pdf/1611.01890.pdf#page=14
### Graphviz Setup
```
sudo apt install -y graphviz
pip3 install graphviz
```
%% Cell type:code id:6b375c8d tags:
``` python
```
%% Cell type:markdown id:1347be90 tags:
## Paths
A **path** is a sequence of edges to get from one node to another
%% Cell type:code id:426d7460 tags:
``` python
```
%% Cell type:markdown id:274d67e1 tags:
## Directed Graphs, DAGs
%% Cell type:code id:c1877373 tags:
``` python
```
%% Cell type:markdown id:257bf913 tags:
## Trees
**Tree**: DAG where one node (the **root**) has no parents and all others have exactly one parent
%% Cell type:code id:7e04db8c tags:
``` python
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment