Spaces:
Runtime error
Runtime error
File size: 252 Bytes
35b22df |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
"""
===========
Simple Path
===========
Draw a graph with matplotlib.
"""
import matplotlib.pyplot as plt
import networkx as nx
G = nx.path_graph(8)
pos = nx.spring_layout(G, seed=47) # Seed layout for reproducibility
nx.draw(G, pos=pos)
plt.show()
|