Mean degree of a node's neighbors (Maslov & Sneppen 2002), the
"average neighbor degree" reported by Cytoscape:
$$C_{NC}(i) = \frac{1}{k_i} \sum_{j \in N(i)} k_j.$$
High values mark nodes attached to hubs. Isolates score 0. Under
mode = "out" the out-neighbors' out-degrees are averaged, under
"in" the in-neighbors' in-degrees.
Arguments
- x
Network input (matrix, igraph, network, cograph_network, tna object).
- mode
For directed networks:
"all"(default),"out"(distances along out-edges), or"in".- ...
Additional arguments passed to
centrality.
References
Maslov, S., & Sneppen, K. (2002). Specificity and stability in topology of protein networks. Science, 296(5569), 910-913.
See also
centrality_degree, and igraph::knn() for
the Barrat weighted generalization.
