本文简要介绍
networkx.algorithms.cluster.average_clustering
的用法。用法:
average_clustering(G, nodes=None, weight=None, count_zeros=True)
计算图 G 的平均聚类系数。
图的聚类系数是平均值,
其中
G
中的节点数。 是- G:图形
- nodes:节点容器,可选(默认=G 中的所有节点)
计算此容器中节点的平均聚类。
- weight:字符串或无,可选(默认=无)
保存用作权重的数值的边属性。如果没有,则每条边的权重为 1。
- count_zeros:bool
如果 False 仅包括平均值中具有非零聚类的节点。
- avg:浮点数
平均聚类
参数:
返回:
注意:
这是一个节省空间的例程;使用聚类函数获取列表然后取平均值可能会更快。
自循环被忽略。
参考:
- 1
Generalizations of the clustering coefficient to weighted complex networks by J. Saramäki, M. Kivelä, J.-P. Onnela, K. Kaski, and J. Kertész, Physical Review E, 75 027105 (2007). http://jponnela.com/web_documents/a9.pdf
- 2
Marcus Kaiser, Mean clustering coefficients: the role of isolated nodes and leafs on clustering measures for small-world networks. https://arxiv.org/abs/0802.2512
例子:
>>> G = nx.complete_graph(5) >>> print(nx.average_clustering(G)) 1.0
相关用法
- Python NetworkX average_degree_connectivity用法及代码示例
- Python NetworkX average_neighbor_degree用法及代码示例
- Python NetworkX average_shortest_path_length用法及代码示例
- Python NetworkX all_simple_paths用法及代码示例
- Python NetworkX add_star用法及代码示例
- Python NetworkX add_path用法及代码示例
- Python NetworkX all_pairs_dijkstra_path用法及代码示例
- Python NetworkX attr_matrix用法及代码示例
- Python NetworkX arbitrary_element用法及代码示例
- Python NetworkX all_pairs_shortest_path用法及代码示例
- Python NetworkX attribute_mixing_dict用法及代码示例
- Python NetworkX all_node_cuts用法及代码示例
- Python NetworkX attr_sparse_matrix用法及代码示例
- Python NetworkX articulation_points用法及代码示例
- Python NetworkX asadpour_atsp用法及代码示例
- Python NetworkX all_shortest_paths用法及代码示例
- Python NetworkX all_simple_edge_paths用法及代码示例
- Python NetworkX adjacency_graph用法及代码示例
- Python NetworkX astar_path用法及代码示例
- Python NetworkX all_pairs_bellman_ford_path用法及代码示例
- Python NetworkX ancestors用法及代码示例
- Python NetworkX all_topological_sorts用法及代码示例
- Python NetworkX attribute_mixing_matrix用法及代码示例
- Python NetworkX all_pairs_dijkstra用法及代码示例
- Python NetworkX all_pairs_bellman_ford_path_length用法及代码示例
注:本文由纯净天空筛选整理自networkx.org大神的英文原创作品 networkx.algorithms.cluster.average_clustering。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。