Skip to contents

Stochastic Approach for Link-Structure Analysis. Returns authority scores. Requires a directed graph.

Usage

centrality_salsa(x, ...)

Arguments

x

Network input (matrix, igraph, network, cograph_network, tna object). Must be directed.

...

Additional arguments passed to centrality.

Value

Named numeric vector of SALSA authority scores.

See also

centrality for computing multiple measures at once, centrality_authority for HITS authority.

Examples

adj <- matrix(c(0, 1, 0, 0, 0, 1, 1, 1, 0), 3, 3)
rownames(adj) <- colnames(adj) <- c("A", "B", "C")
centrality_salsa(adj)
#>   A   B   C 
#> 0.5 0.0 1.0