以给定格式排列networkx中的节点

时间:2011-06-15 15:12:28

标签: python networkx

我有2个节点A和B的列表,用于networkx中的图G。

我想绘制节点,使列表A保留在左侧,列表B中的节点保留在右侧。

为此,我想知道窗口的大小,并对列表A中的节点执行类似于窗口左侧的弹簧布局和右侧的列表B的相同内容。

有没有办法这样做....?

import matplotlib.pyplot as plt
import networkx as nx
g = nx.Graph()
ListA = [1]
ListB = [2]
for node in ListA:
    g.add_node(node)
for node in ListB:
    g.add_node(node)
pos=nx.spring_layout(g)   // want to change the position of all the nodes such that ListA is on left and ListB is on right
print pos
nx.draw_networkx_nodes(g,pos,nodelist=ListA,node_color='r')
nx.draw_networkx_nodes(g,pos,nodelist=ListB,node_color='g')
nx.draw_networkx_labels(g,pos)
plt.show()

1 个答案:

答案 0 :(得分:0)

此链接单独绘制图形,但我不确定它是否以任何特定方向绘制它们。

http://networkx.lanl.gov/examples/drawing/atlas.html