Lect 03 Multi Graphs with Networkx ||Types for Graph using Python

Опубликовано: 05 Февраль 2025
на канале: Data Science Center
2,100
9

Lect 03: Multi Graphs with Networkx

Types of Graph:
i. Directed graphs,
ii. Multigraphs
iii. Weighted Graphs


Multi Graphs
G(V, E)

multiple edges to have the same pair of start and end nodes.
G(V, E)

It can be directed or undirected multi graph

Multi directed graph:
nx.MultiDiGraph()

Multi undirected graph:
nx.MultiGraph()