Drawing graph in graphviz layout in python using nx.draw_graphviz gives error
问题 I am trying to draw a 100 node multi-graph G in graphviz layout in python's networkx so I made two trials so far: Trial 1 nx.draw_graphviz function as follows nx.draw_graphviz(G) but I get the following error repeated for all nodes in the graph: Error: node 1, position [0.127506302389087, 0.3262608552621944], expected two doubles Then trying to figure a solution I used trial 2 A=nx.to_agraph(G) to get a pygraphviz graph but when I try to draw with nx.draw_graphviz(A) I get the following Error