How to increase node spacing for networkx.spring_l

2019-02-07 22:00发布

Drawing a clique graph with

import networkx as nx
....
nx.draw(G, layout=nx.spring_layout(G))

produces the following picture:

enter image description here

Obviously, the spacing between the nodes (e.g., the edge length) needs to be increased. I've googled this and found this suggestion here:

For some of the layout algorithms there is a "scale" parameter that might help. e.g.

In 1: import networkx as nx

In 2: G=nx.path_graph(4)

In [3]: pos=nx.spring_layout(G) #default to scale=1

In [4]: nx.draw(G,pos)

In [5]: pos=nx.spring_layout(G,scale=2) # double distance between all nodes

In [6]: nx.draw(G,pos)

However, the scale parameter does not seem to have any effect.

What is the right method to get a better drawing?

2条回答
Summer. ? 凉城
2楼-- · 2019-02-07 22:22

Alright, my answer is too late for this question. But the solution to this problem lies in the NetworkX version 1.8 which is yet to be released, but is available via git hub.

Do the following to increase the distance between nodes:

    pos = nx.spring_layout(G,k=0.15,iterations=20)
    # k controls the distance between the nodes and varies between 0 and 1
    # iterations is the number of times simulated annealing is run
    # default k =0.1 and iterations=50

Tweak with these parameters to see how it works. But despite this there is no guarantee that all nodes are non-overlapping

查看更多
Viruses.
3楼-- · 2019-02-07 22:44

I used the optimal distance parameter of the Kamada Kawai layout, and set the distance between non-connected components to the maximum distance in the graph. There is probably a better way of munging the dictionaries, but this is pretty easy:

df = pd.DataFrame(index=G.nodes(), columns=G.nodes())
for row, data in nx.shortest_path_length(G):
    for col, dist in data.items():
        df.loc[row,col] = dist

df = df.fillna(df.max().max())

layout = nx.kamada_kawai_layout(G, dist=df.to_dict())
查看更多
登录 后发表回答