authority_score(graph, scale = TRUE, weights = NULL,
options = arpack_defaults)
weight
edge attribute, then this is used
by default.arpack
for details.options
member returned
by arpack
, see that for documentation.hub_score
.hub_score
, eigen_centrality
for
eigenvector centrality, page_rank
for the Page Rank
scores. arpack
for the underlining machinery of the
computation.## An in-star
g <- make_star(10)
hub_score(g)$vector
authority_score(g)$vector
## A ring
g2 <- make_ring(10)
hub_score(g2)$vector
authority_score(g2)$vector
Run the code above in your browser using DataLab