Warning

This documents an unmaintained version of NetworkX. Please upgrade to a maintained version and see the current NetworkX documentation.

networkx.drawing.nx_agraph.to_agraph

to_agraph(N)[source]

Returns a pygraphviz graph from a NetworkX graph N.

Parameters

N (NetworkX graph) – A graph created with NetworkX

Examples

>>> K5 = nx.complete_graph(5)
>>> A = nx.nx_agraph.to_agraph(K5)

Notes

If N has an dict N.graph_attr an attempt will be made first to copy properties attached to the graph (see from_agraph) and then updated with the calling arguments if any.