Edge Count
From SONIVIS:Wiki
Edge Count
|
The Edge Count returns the number of edges in the network.
Objective
In a social network the number of edges reveals first insights into the interrelatedness of the nodes in this network.
The maximum number of possible edges in a network is determined by the number of nodes
as there are
possible unordered pairs of nodes, and thus the same amount of possible edges [1].
Calculation
A network
consists of a set of nodes
and a set of edges (lines)
between them.
is the total number of edges in a network.
Statement
| R-example (igprah) |
| library(igraph) g <- random.graph.game(10, 3/10) ecount(g) |

