增加networkx图中的节点间距

时间:2019-06-15 22:59:55

标签: python graph nodes networkx edges

我生成的networkx图偶然地结合在一起。我想要更多的清晰度,即节点分离和更多的边缘距离。另外,如果还有其他方法可以增加节点间距,那么我也可能需要更新的答案。

基本上,我的图看起来像这样,但是结点更多:

How to increase node spacing for networkx.spring_layout

我尝试使用该问题中提到的参数(k和迭代):

Start-Process -FilePath powershell -ArgumentList '-NoExit', '-Command', 'ECHO "hi"'

但是当我在生成的图形G = nx.DiGraph() nx.draw( G, pos=nx.spring_layout(G), with_labels=True, font_size=15, k=0.01, iterations=1000, node_size=400 ) 中使用kiterations值时,看不到任何区别。

0 个答案:

没有答案