更改

跳到导航 跳到搜索
添加4字节 、 2020年4月10日 (五) 23:54
第468行: 第468行:  
利用网络科学工具包[https://networkx.github.io/ NetworkX], 可以调用基于渗流方法的K-clique社团检测算法。示例如下:
 
利用网络科学工具包[https://networkx.github.io/ NetworkX], 可以调用基于渗流方法的K-clique社团检测算法。示例如下:
 
<source>
 
<source>
 +
 
# 导入算法包
 
# 导入算法包
 
from networkx.algorithms.community import k_clique_communities
 
from networkx.algorithms.community import k_clique_communities
 +
 
# 构造图
 
# 构造图
 
G = nx.complete_graph(5)
 
G = nx.complete_graph(5)
 
K5 = nx.convert_node_labels_to_integers(G,first_label=2)
 
K5 = nx.convert_node_labels_to_integers(G,first_label=2)
 
G.add_edges_from(K5.edges())
 
G.add_edges_from(K5.edges())
 +
 
# 对图G进行社团检测,制定最小cliques=4
 
# 对图G进行社团检测,制定最小cliques=4
 
c = list(k_clique_communities(G, 4))
 
c = list(k_clique_communities(G, 4))
 +
 
</source>
 
</source>
  
7,129

个编辑

导航菜单