1 回答
TA贡献1824条经验 获得超5个赞
绘制图形时,您的 color_list 和节点列表(B.nodes)的顺序不同。
color_list
['r', 'b', 'b', 'r', 'b', 'r', 'r']
B.nodes
NodeView((1, 2, 3, 4, 'a', 'b', 'c'))
我使用字典创建了一个 color_list 使用 B.nodes 顺序,并从 B 中的节点列表映射二分集。
B = nx.Graph()
B.add_nodes_from([1,2,3,4], bipartite=0) # Add the node attribute "bipartite"
B.add_nodes_from(['a','b','c'], bipartite=1)
B.add_edges_from([(1,'a'), (1,'b'), (2,'b'), (2,'c'), (3,'c'), (4,'a')])
bottom_nodes, top_nodes = bipartite.sets(B)
color = bipartite.color(B)
color_dict = {0:'b',1:'r'}
color_list = [color_dict[i[1]] for i in B.nodes.data('bipartite')]
# Draw bipartite graph
pos = dict()
color = []
pos.update( (n, (1, i)) for i, n in enumerate(bottom_nodes) ) # put nodes from X at x=1
pos.update( (n, (2, i)) for i, n in enumerate(top_nodes) ) # put nodes from Y at x=2
nx.draw(B, pos=pos, with_labels=True, node_color = color_list)
plt.show()
输出:
添加回答
举报