| reaching_global | R Documentation |
A graph-level hierarchy measure computed from per-node local reaching centralities:
GRC(G) = \frac{1}{N - 1} \sum_v \left( \max_u LRC(u) - LRC(v) \right)
reaching_global(x, mode = "all", ...)
x |
Network input (matrix, igraph, network, cograph_network, tna object). |
mode |
For directed networks: |
... |
Additional arguments passed to |
Values close to 0 indicate a flat network (all nodes reach equal
proportions of the graph); values close to 1 indicate strong hierarchical
structure. Matches networkx.global_reaching_centrality exactly.
A single numeric value in [0, 1].
Mones, E., Vicsek, L., & Vicsek, T. (2012). Hierarchy measure for complex networks. PLoS ONE, 7(3), e33799.
centrality_reaching_local, summarize_network.
# Star graph: highly hierarchical (directed out from center)
adj <- matrix(0, 5, 5)
adj[1, 2:5] <- 1
rownames(adj) <- colnames(adj) <- LETTERS[1:5]
reaching_global(adj, mode = "out")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.