metric.eigen.value {fastnet} | R Documentation |
Eigenvalue Score
Description
Calculate the eigenvalue centrality score of a graph.
Usage
metric.eigen.value(g)
Arguments
g |
The input network. |
Details
metric.eigen.value
calculates the 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.value(x)
## End(Not run)
[Package fastnet version 1.0.0 Index]