import networkx as nx g = nx.DiGraph() g.add_edge('foo:foo', 'foo:bar') print(nx.nx_pydot.graphviz_layout(g)) The problem is a result of two issues: #1568 and #2050 Essentially, pydot interprets ...
I'm using spring_layout from networkx (python 2.7) to embed multidimensional array into 2D. My question is why almost always I'm left with two extreme points?