igraph R中的边缘中心性测量

3

Igraph R包中实现了边介数中心性。我知道在文献中还有其他的边中心性指标。是否有包含其他边中心性指标,例如k路径边中心性测量的软件包?我们能否使用问题图的线图来计算边中心性指数?

1个回答

0

CINNA软件包在CRAN上支持各种中心性度量,包括k路径边缘中心性,我相信。

您可以使用以下命令查看这些度量:

library("igraph")
library("CINNA")

g <- erdos.renyi.game(100, 0.2)
proper_centralities(g)
#[1] "subgraph centrality scores"                      
#[2] "Topological Coefficient"                         
#[3] "Average Distance"                                
#[4] "Barycenter Centrality"                           
#[5] "BottleNeck Centrality"                           
#[6] "Centroid value"                                  
#[7] "Closeness Centrality (Freeman)"                  
# ...                       
#[16] "K-core Decomposition"                            
#[17] "Geodesic K-Path Centrality"                      
#[18] "Katz Centrality (Katz Status Index)"             
# ...                 
#[41] "Stress Centrality"                               
#[42] "Load Centrality"                                 
#[43] "Flow Betweenness Centrality"                     
#[44] "Information Centrality"                          
#[45] "Dangalchev Closeness Centrality"                 
#[46] "Group Centrality"                                
#[47] "Harmonic Centrality"                             
#[48] "Local Bridging Centrality"                       
#[49] "Wiener Index Centrality"   

正如您所看到的,有很多选择。 calculate_centralities 函数可以计算给定图形的度量。


不幸的是,CINNA包仅包括顶点中心性,例如测地线K-路径中心性。 - Piotr Wilczek
1
@PiotrWilczek 哎呀!我太快了。 - Anders Ellern Bilgrau
我唯一熟知的边中心性指标是 igraph 中的 edge_betweenness - Anders Ellern Bilgrau

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接