For each node, measures whether it preferentially directs its strongest ties toward prominent nodes. A score > 1 means the node's ties to prominent nodes are stronger than average.
Usage
rich_club_local(
x,
prominence = NULL,
rich = c("k", "s"),
directed = NULL,
digits = NULL,
sort_by = "score",
...
)Arguments
- x
Network input: matrix, igraph, network, cograph_network, or tna object.
- prominence
Integer or logical vector indicating which nodes are prominent (1/TRUE = prominent), OR a numeric threshold. If NULL, nodes above median degree (or strength) are prominent.
- rich
Character.
"k"(degree, default) or"s"(strength). Used whenprominenceis NULL or a threshold.- directed
Logical or NULL. Default NULL (auto-detect).
- digits
Integer or NULL. Round scores. Default NULL.
- sort_by
Character or NULL. Column to sort by (descending). Default
"score".- ...
Additional arguments passed to
to_igraph.
Value
A data frame with columns node and score, sorted
by score descending. Values > 1 indicate the node directs
disproportionately strong ties to prominent nodes.
References
Opsahl, T., Colizza, V., Panzarasa, P. & Ramasco, J.J. (2008). Prominence and control: The weighted rich-club effect. Physical Review Letters, 101, 168702.
