centralize
for a summary of graph centralization.centr_clo(graph, mode = c("out", "in", "all", "total"), normalized = TRUE)
mode
argument of
closeness
.normalized
argument was
TRUE
, then the result was divided by this number.centr_betw_tmax
,
centralization.betweenness.tmax
;
centr_betw
,
centralization.betweenness
;
centr_clo_tmax
,
centralization.closeness.tmax
;
centr_degree_tmax
,
centralization.degree.tmax
;
centr_degree
,
centralization.degree
;
centr_eigen_tmax
,
centralization.evcent.tmax
;
centr_eigen
,
centralization.evcent
;
centralization
, centralize
,
centralize.scores
# A BA graph is quite centralized
g <- sample_pa(1000, m = 4)
centr_degree(g)$centralization
centr_clo(g, mode = "all")$centralization
centr_betw(g, directed = FALSE)$centralization
centr_eigen(g, directed = FALSE)$centralization
Run the code above in your browser using DataLab