View source: R/centralization.R
| centr_eigen_tmax | R Documentation |
See centralize() for a summary of graph centralization.
centr_eigen_tmax(
graph = NULL,
nodes = 0,
directed = FALSE,
scale = deprecated()
)
Real scalar, the theoretical maximum (unnormalized) graph eigenvector centrality score for graphs with given vertex count and other parameters.
centralization_eigenvector_centrality_tmax().
Other centralization related:
centr_betw(),
centr_betw_tmax(),
centr_clo(),
centr_clo_tmax(),
centr_degree(),
centr_degree_tmax(),
centr_eigen(),
centralize()
# A BA graph is quite centralized
g <- sample_pa(1000, m = 4)
centr_eigen(g, normalized = FALSE)$centralization %>%
`/`(centr_eigen_tmax(g))
centr_eigen(g, normalized = TRUE)$centralization
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.