| centrality_prestige_domain | R Documentation |
Directed-graph prestige measure: for each node v, the number of
other nodes that can reach v via a directed path.
\mathrm{domain}(v) = |\{u \ne v : u \to^* v\}|
centrality_prestige_domain(x, ...)
x |
Directed network input (matrix, igraph, cograph_network, tna object). |
... |
Additional arguments passed to |
Bit-exact match against sna::prestige(cmode = "domain").
Directed-only; returns NA with a warning on undirected input.
Named numeric vector of domain prestige values in
\{0, 1, \ldots, N - 1\}.
Wasserman, S., & Faust, K. (1994). Social Network Analysis: Methods and Applications. Cambridge University Press.
centrality, centrality_reaching_local
for the dual "out-reachability" measure, centrality_pairwisedis
for a related reachability-based directed measure.
# Directed 3-cycle: every node reaches every other node
adj <- matrix(c(0,1,0, 0,0,1, 1,0,0), 3, 3, byrow = TRUE)
rownames(adj) <- colnames(adj) <- c("A", "B", "C")
centrality_prestige_domain(adj)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.