本文简要介绍
networkx.algorithms.cluster.square_clustering
的用法。用法:
square_clustering(G, nodes=None)
计算节点的平方聚类系数。
对于每个节点,返回节点 [1] 处存在的可能正方形的分数
其中 是 和 除 之外的共同邻居的数量(即正方形)和 ,其中 如果 和 连接,否则为 0 。 [2]
- G:图形
- nodes:节点容器,可选(默认=G 中的所有节点)
计算此容器中节点的集群。
- c4:字典
由具有平方聚类系数值的节点键入的字典。
参数:
返回:
注意:
(三角形聚类)给出节点 v 的两个邻居相互连接的概率, 是节点 v 的两个邻居共享一个不同于 v 的公共邻居的概率。该算法可以应用于两者二分网络和单分网络。
参考:
- 1
Pedro G. Lind, Marta C. González, and Hans J. Herrmann. 2005 Cycles and clustering in bipartite networks. Physical Review E (72) 056127.
- 2
Zhang, Peng et al. Clustering Coefficient and Community Structure of Bipartite Networks. Physica A: Statistical Mechanics and its Applications 387.27 (2008): 6869-6875. https://arxiv.org/abs/0710.0117v1
例子:
>>> G = nx.complete_graph(5) >>> print(nx.square_clustering(G, 0)) 1.0 >>> print(nx.square_clustering(G)) {0: 1.0, 1: 1.0, 2: 1.0, 3: 1.0, 4: 1.0}
相关用法
- Python NetworkX single_source_dijkstra_path_length用法及代码示例
- Python NetworkX single_source_bellman_ford用法及代码示例
- Python NetworkX subgraph_view用法及代码示例
- Python NetworkX shortest_path用法及代码示例
- Python NetworkX soft_random_geometric_graph用法及代码示例
- Python NetworkX sets用法及代码示例
- Python NetworkX simrank_similarity用法及代码示例
- Python NetworkX shell_layout用法及代码示例
- Python NetworkX single_source_bellman_ford_path用法及代码示例
- Python NetworkX sudoku_graph用法及代码示例
- Python NetworkX single_source_bellman_ford_path_length用法及代码示例
- Python NetworkX single_source_shortest_path_length用法及代码示例
- Python NetworkX snap_aggregation用法及代码示例
- Python NetworkX set_edge_attributes用法及代码示例
- Python NetworkX stochastic_block_model用法及代码示例
- Python NetworkX symmetric_difference用法及代码示例
- Python NetworkX selfloop_edges用法及代码示例
- Python NetworkX second_order_centrality用法及代码示例
- Python NetworkX simulated_annealing_tsp用法及代码示例
- Python NetworkX shortest_augmenting_path用法及代码示例
- Python NetworkX spring_layout用法及代码示例
- Python NetworkX simple_cycles用法及代码示例
- Python NetworkX single_source_dijkstra用法及代码示例
- Python NetworkX spectral_bipartivity用法及代码示例
- Python NetworkX strong_product用法及代码示例
注:本文由纯净天空筛选整理自networkx.org大神的英文原创作品 networkx.algorithms.cluster.square_clustering。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。