centrality_salsa: SALSA Authority Centrality

View source: R/centrality.R

centrality_salsaR Documentation

SALSA Authority Centrality

Description

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)

cograph documentation built on May 31, 2026, 5:06 p.m.