Indegree
From SONIVIS:Wiki
Indegree
|
The Indegree of a node is the number of its incoming edges.
Objective
The Indegree of a node
considers the number of all nodes that terminate in
[1].
This measure is a specialized variant of Degree. It is also called Indegree-based Prestige.
Calculation
The Indegree is equal to the number of arcs
for all
and
, where
is a set of nodes and
a set of edges of a network.
Statement
| R-example |
| library(igraph) g <- graph.ring(10) degree(g, mode = c("in")) |

