| centrality_decay | R Documentation |
Sum of delta^d over all nodes, where d is the shortest path distance.
Nodes near many others get higher scores. The decay_parameter
controls the distance penalty.
centrality_decay(x, mode = "all", decay_parameter = 0.5, ...)
x |
Network input (matrix, igraph, network, cograph_network, tna object). |
mode |
For directed networks: |
decay_parameter |
Numeric between 0 and 1. Default 0.5. |
... |
Additional arguments passed to |
Named numeric vector of decay centrality values.
centrality for computing multiple measures at once.
adj <- matrix(c(0, 1, 0, 1, 0, 1, 0, 1, 0), 3, 3)
rownames(adj) <- colnames(adj) <- c("A", "B", "C")
centrality_decay(adj, decay_parameter = 0.5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.