| centr_eigen_tmax {igraph} | R Documentation | 
Theoretical maximum for betweenness centralization
Description
See centralize() for a summary of graph centralization.
Usage
centr_eigen_tmax(graph = NULL, nodes = 0, directed = FALSE, scale = TRUE)
Arguments
graph | 
 The input graph. It can also be   | 
nodes | 
 The number of vertices. This is ignored if the graph is given.  | 
directed | 
 logical scalar, whether to use directed shortest paths for calculating betweenness.  | 
scale | 
 Whether to rescale the eigenvector centrality scores, such that the maximum score is one.  | 
Value
Real scalar, the theoretical maximum (unnormalized) graph betweenness centrality score for graphs with given order and other parameters.
See Also
Other centralization related: 
centr_betw(),
centr_betw_tmax(),
centr_clo(),
centr_clo_tmax(),
centr_degree(),
centr_degree_tmax(),
centr_eigen(),
centralize()
Examples
# 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
[Package igraph version 2.0.3 Index]