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()