Note
Click here to download the full example code
Grave DocumentationΒΆ
import networkx as nx
toy_network = nx.barbell_graph(100, 10)
for node, node_attributes in toy_network.nodes(data=True):
node['style'] = {'color': 'blue'}
plot_the_graph(toy_network,
node_style=lambda attrs: attrs['style'])
Total running time of the script: ( 0 minutes 0.000 seconds)