evcent
takes one or more graphs (dat
) and returns the eigenvector centralities of positions (selected by nodes
) within the graphs indicated by g
. This function is compatible with centralization
, and will return the theoretical maximum absolute deviation (from maximum) conditional on size (which is used by centralization
to normalize the observed centralization score).
evcent(dat, g=1, nodes=NULL, gmode="digraph", diag=FALSE,
tmaxdev=FALSE, rescale=FALSE, ignore.eval=FALSE, tol=1e-10,
maxiter=1e5, use.eigen=FALSE)
A vector, matrix, or list containing the centrality scores (depending on the number and size of the input graphs).
one or more input graphs.
integer indicating the index of the graph for which centralities are to be calculated (or a vector thereof). By default, g
=1.
vector indicating which nodes are to be included in the calculation. By default, all nodes are included.
string indicating the type of graph being evaluated. "digraph" indicates that edges should be interpreted as directed; "graph" indicates that edges are undirected. This is currently ignored.
boolean indicating whether or not the diagonal should be treated as valid data. Set this true if and only if the data can contain loops. diag
is FALSE
by default.
boolean indicating whether or not the theoretical maximum absolute deviation from the maximum nodal centrality should be returned. By default, tmaxdev==FALSE
.
if true, centrality scores are rescaled such that they sum to 1.
logical; should edge values be ignored?
convergence tolerance for the eigenvector computation.
maximum iterations for eigenvector calculation.
logical; should we use R's eigen
routine instead of the (faster but less robust) internal method?
Carter T. Butts buttsc@uci.edu
evcent
will not symmetrize your data before extracting eigenvectors; don't send this routine asymmetric matrices unless you really mean to do so.
Eigenvector centrality scores correspond to the values of the first eigenvector of the graph adjacency matrix; these scores may, in turn, be interpreted as arising from a reciprocal process in which the centrality of each actor is proportional to the sum of the centralities of those actors to whom he or she is connected. In general, vertices with high eigenvector centralities are those which are connected to many other vertices which are, in turn, connected to many others (and so on). (The perceptive may realize that this implies that the largest values will be obtained by individuals in large cliques (or high-density substructures). This is also intelligible from an algebraic point of view, with the first eigenvector being closely related to the best rank-1 approximation of the adjacency matrix (a relationship which is easy to see in the special case of a diagonalizable symmetric real matrix via the \(S \Lambda S^{-1}\) decomposition).)
By default, a sparse-graph power method is used to obtain the principal eigenvector. This procedure scales well, but may not converge in some cases. In the event that the convergence objective set by tol
is not obtained, evcent
will return a warning message. Correctives in this case include increasing maxiter
, or setting use.eigen
to TRUE
. The latter will cause evcent
to use R's standard eigen
method to calculate the principal eigenvector; this is far slower for sparse graphs, but is also more robust.
The simple eigenvector centrality is generalized by the Bonacich power centrality measure; see bonpow
for more details.
Bonacich, P. (1987). ``Power and Centrality: A Family of Measures.'' American Journal of Sociology, 92, 1170-1182.
Katz, L. (1953). ``A New Status Index Derived from Sociometric Analysis.'' Psychometrika, 18, 39-43.
centralization
, bonpow
#Generate some test data
dat<-rgraph(10,mode="graph")
#Compute eigenvector centrality scores
evcent(dat)
Run the code above in your browser using DataLab