有关图集中化的摘要,请参见centralize()
。
值
一个包含以下组件的命名列表
- res
节点级中心性得分。
- 集中化
图级中心性指数。
- theoretical_max
对于具有给定顶点数的图,使用相同的参数,理论上最大的图级中心化分数。 如果
normalized
参数为TRUE
,则结果除以此数。
参见
其他集中化相关:centr_betw_tmax()
, centr_clo()
, centr_clo_tmax()
, centr_degree()
, centr_degree_tmax()
, centr_eigen()
, centr_eigen_tmax()
, centralize()
示例
# A BA graph is quite centralized
g <- sample_pa(1000, m = 4)
centr_degree(g)$centralization
#> [1] 0.1618335
centr_clo(g, mode = "all")$centralization
#> [1] 0.4288587
centr_betw(g, directed = FALSE)$centralization
#> [1] 0.2645597
centr_eigen(g, directed = FALSE)$centralization
#> [1] 0.948102