Lect 02: Types of Graphs with Networkx ||Directed Graph using Python

Опубликовано: 05 Октябрь 2024
на канале: Data Science Center
3,068
27

Lect 02: Types of Graphs with Networkx ||Directed Graph using Python

Types of Graphs with Networkx
i. Directed graphs,
ii. Multigraphs
iii. Weighted Graphs


i. Directed graphs
G(V, E)
A digraph G=(V, E), where V is a set of nodes and E is a set of ordered couples representing the connection between two nodes belonging to V.
Edge is a order couple thats why it enforce the connection
V= {A, B, C, D, E.....Z}
E= {(A, B), (A,C), (B, D)....}

In-degree
out_degree

Directed graph are also known as DiGraph