Directed Graphs

Default visualisation for a directed graph.

plot 02 directed network
import matplotlib.pyplot as plt

from netgraph import Graph

cube = [
    (0, 1),
    (1, 2),
    (2, 3), # <- bidirectional edges
    (3, 2), # <-
    (3, 0),
    (4, 5),
    (5, 6), # <-
    (6, 5), # <-
    (6, 7),
    (0, 4),
    (7, 4),
    (5, 1), # <-
    (1, 5), # <-
    (2, 6),
    (3, 7)
]

Graph(cube, edge_width=2., arrows=True)
plt.show()

Total running time of the script: ( 0 minutes 0.158 seconds)

Gallery generated by Sphinx-Gallery