metric.eigen.mean {fastnet} | R Documentation |
Mean Eigenvalue Centrality
Description
Calculate the mean eigenvalue centrality of a graph.
Usage
metric.eigen.mean(g)
Arguments
g |
The input network. |
Details
metric.eigen.mean
calculates the mean eigenvalue centrality score of graph g.
Value
A real constant.
Author(s)
Xu Dong, Nazrul Shaikh.
References
Bonacich, Phillip, and Paulette Lloyd. "Eigenvector-like measures of centrality for asymmetric relations." Social networks 23, no. 3 (2001): 191-201.
Borgatti, Stephen P. "Centrality and network flow." Social networks 27, no. 1 (2005): 55-71.
Examples
## Not run:
x <- net.erdos.renyi.gnp(1000, 0.01)
metric.eigen.mean(x)
## End(Not run)
[Package fastnet version 1.0.0 Index]