| centrality_bridging | R Documentation |
Product of betweenness and bridging coefficient. Identifies nodes that bridge communities.
centrality_bridging(x, ...)
x |
Network input (matrix, igraph, network, cograph_network, tna object). |
... |
Additional arguments passed to |
Named numeric vector of bridging centrality values.
centrality for computing multiple measures at once,
centrality_local_bridging for the local variant.
adj <- matrix(c(0, 1, 1, 1, 0, 1, 1, 1, 0), 3, 3)
rownames(adj) <- colnames(adj) <- c("A", "B", "C")
centrality_bridging(adj)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.