本文簡要介紹
networkx.algorithms.assortativity.attribute_assortativity_coefficient
的用法。用法:
attribute_assortativity_coefficient(G, attribute, nodes=None)
計算節點屬性的分類。
Assortativity 衡量圖中連接相對於給定屬性的相似性。
- G:NetworkX 圖
- attribute:string
節點屬性鍵
- nodes: list or iterable (optional):
計算容器中節點的屬性分類。默認為所有節點。
- r:浮點數
給定屬性的圖的分類性
參數:
返回:
注意:
這計算了方程。 (2) 在參考文獻中。 [1] , (trace(M)-sum(M^2))/(1-sum(M^2)),其中 M 是指定屬性的聯合概率分布(混合矩陣)。
參考:
- 1
M. E. J. Newman, Mixing patterns in networks, Physical Review E, 67 026126, 2003
例子:
>>> G = nx.Graph() >>> G.add_nodes_from([0, 1], color="red") >>> G.add_nodes_from([2, 3], color="blue") >>> G.add_edges_from([(0, 1), (2, 3)]) >>> print(nx.attribute_assortativity_coefficient(G, "color")) 1.0
相關用法
- Python NetworkX attribute_mixing_dict用法及代碼示例
- Python NetworkX attribute_mixing_matrix用法及代碼示例
- Python NetworkX attr_matrix用法及代碼示例
- Python NetworkX attr_sparse_matrix用法及代碼示例
- Python NetworkX average_degree_connectivity用法及代碼示例
- Python NetworkX all_simple_paths用法及代碼示例
- Python NetworkX add_star用法及代碼示例
- Python NetworkX add_path用法及代碼示例
- Python NetworkX all_pairs_dijkstra_path用法及代碼示例
- Python NetworkX average_clustering用法及代碼示例
- Python NetworkX arbitrary_element用法及代碼示例
- Python NetworkX average_neighbor_degree用法及代碼示例
- Python NetworkX all_pairs_shortest_path用法及代碼示例
- Python NetworkX all_node_cuts用法及代碼示例
- 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 average_shortest_path_length用法及代碼示例
- Python NetworkX all_topological_sorts用法及代碼示例
- Python NetworkX all_pairs_dijkstra用法及代碼示例
注:本文由純淨天空篩選整理自networkx.org大神的英文原創作品 networkx.algorithms.assortativity.attribute_assortativity_coefficient。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。