本文簡要介紹
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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。