Network Local Clustering Coefficient
From SONIVIS:Wiki
Network Local Clustering Coefficient
|
The Network Local Clustering Coefficient is the average distribution of the Local Clustering Coefficient of all nodes in the network.
Objective
The Network Local Clustering Coefficient considers the Local Clustering Coefficient of each node in the network and calculates the mean of all nodes. The measure is standardized on the network size.
This measure can be used to show the average strength of connectedness between the nodes of the network.
Calculation
, where
is the Local Clustering Coefficient of node
.[1]
The result of this calculation is a number between 0 and 1, with 1 meaning all nodes are connected to each other.
This measure can not be calculated on a network with isolated nodes.
Statement
| R-example |
| library(igraph) g <- random.graph.game(10, 3/10) |
Notice: This measure can not be calculated on a network with isolated nodes and returns the value NaN. For that case you can rerun the statement to build the network (g <- random.graph.game(10, 3/10)).

