Skip to contents

Inverse of column means of the mean first passage time matrix. Requires a connected graph.

Usage

centrality_markov(x, ...)

Arguments

x

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

...

Additional arguments passed to centrality.

Value

Named numeric vector of Markov centrality values.

See also

centrality for computing multiple measures at once.

Examples

adj <- matrix(c(0, 1, 1, 1, 0, 1, 1, 1, 0), 3, 3)
rownames(adj) <- colnames(adj) <- c("A", "B", "C")
centrality_markov(adj)
#>    A    B    C 
#> 0.75 0.75 0.75