| centrality_participation | R Documentation |
Measures diversity of inter-community connections. Nodes connecting to many communities have high participation. Requires community membership.
centrality_participation(x, membership = NULL, mode = "all", ...)
x |
Network input (matrix, igraph, network, cograph_network, tna object). |
membership |
Integer vector of community assignments (one per node). |
mode |
For directed networks: |
... |
Additional arguments passed to |
Named numeric vector of participation coefficient values (0-1).
centrality for computing multiple measures at once,
centrality_within_module_z for within-community connectivity.
adj <- matrix(c(0,1,1,0,0, 1,0,1,0,0, 1,1,0,1,0, 0,0,1,0,1, 0,0,0,1,0), 5, 5)
rownames(adj) <- colnames(adj) <- LETTERS[1:5]
centrality_participation(adj, membership = c(1, 1, 1, 2, 2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.