Skip to contents

Fraction of total communicability that passes through each node.

Usage

centrality_communicability_betweenness(x, ...)

Arguments

x

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

...

Additional arguments passed to centrality.

Value

Named numeric vector of communicability betweenness 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_communicability_betweenness(adj)
#>         A         B         C 
#> 0.4978614 0.4978614 0.4978614