| centrality_dmnc | R Documentation |
Edge count divided by max component size^1.5 in the neighborhood subgraph.
centrality_dmnc(x, mode = "all", dmnc_epsilon = 1.7, ...)
x |
Network input (matrix, igraph, network, cograph_network, tna object). |
mode |
For directed networks: |
dmnc_epsilon |
Numeric. Epsilon exponent for DMNC. Default 1.7 as recommended by Lin et al. (2008). centiserve uses 1.67 (four-community assumption). Must be between 1 and 2. |
... |
Additional arguments passed to |
Named numeric vector of DMNC values.
centrality for computing multiple measures at once,
centrality_mnc for the size-only variant.
adj <- matrix(c(0, 1, 1, 1, 0, 1, 1, 1, 0), 3, 3)
rownames(adj) <- colnames(adj) <- c("A", "B", "C")
centrality_dmnc(adj)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.