Note
Click here to download the full example code
Pygraphviz DrawΒΆ
An example showing how to use the interface to the pygraphviz AGraph class to draw a graph.
Also see the pygraphviz documentation and examples at http://pygraphviz.github.io/
import networkx as nx
# plain graph
G = nx.complete_graph(5) # start with K5 in networkx
A = nx.nx_agraph.to_agraph(G) # convert to a graphviz graph
A.layout() # neato layout
A.draw("k5.ps") # write postscript in k5.ps with neato layout
Total running time of the script: ( 0 minutes 0.026 seconds)