如何根据我的隶属度矢量绘制带有不同标签的图形?

时间:2019-04-10 09:27:32

标签: python algorithm graph networkx

我有一个图,经过分类后,我提取了一个隶属度矢量:

vector membership is : [1, 1, 1, 1, 1, 2, 1, 2, 2, 2, 3, 3, 3, 3]    

,表示其节点号0:4在同一类中。 现在,我需要绘制一个图形,其中具有相同编号的节点应具有相同的标签。标签的数量是3。

最简单的方法是什么?

1 个答案:

答案 0 :(得分:0)

首先,您需要创建一个Graph,其中包含一个包含该节点标签的属性

import matplotlib.pyplot as plt
import networkx as nx

member_labels = [1, 1, 1, 1, 1, 2, 1, 2, 2, 2, 3, 3, 3, 3]
node_ids = list(range(len(member_labels)))

node_label_dict = dict(zip(node_ids, member_labels))

G = nx.Graph()
G.add_nodes_from(node_ids)
nx.set_node_attributes(G, node_label_dict, 'label')

所以现在您的图具有以下节点和属性

print(G.nodes(data=True))
#NodeDataView({0: {'label': 1}, 1: {'label': 1}, 2: {'label': 1}, 3: {'label': 1}, 4: {'label': 1}, 5: {'label': 2}, 6: {'label': 1}, 7: {'label': 2}, 8: {'label': 2}, 9: {'label': 2}, 10: {'label': 3}, 11: {'label': 3}, 12: {'label': 3}, 13: {'label': 3}})

现在您只需要绘制节点和标签

pos=nx.nx.spring_layout(G)
nx.nx.draw_networkx_nodes(G, pos)

更新

# Fixed the variable name
labels = nx.nx.draw_networkx_labels(G,pos, labels=node_label_dict)

enter image description here