pydot_layout
Create node positions using Pydot and Graphviz.
Returns a dictionary of positions keyed by node.
Examples
>>> G = nx.complete_graph(4) >>> pos = nx.nx_pydot.pydot_layout(G) >>> pos = nx.nx_pydot.pydot_layout(G, prog='dot')