Outdegree
From SONIVIS:Wiki
Outdegree
|
The Outdegree of a node is the number of its outgoing edges.
Objective
The Outdegree
of a node
is the number of all nodes in which
terminates [1].
This measure is a specialized variant of Degree.
Calculation
The Outdegree is equal to the number of edges
for
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("out")) |

