localClusteringCoeff: Local Clustering Coefficient

Description Usage Arguments Value Author(s) References Examples

View source: R/localClusteringCoeff.R

Description

This method calculates the Local Clustering Coefficient.

Usage

1

Arguments

g

a graph as a graphNEL object.

deg

the degree of each node of the g.

Value

This method returns the local clustering coefficient.

Author(s)

Laurin Mueller

References

D. Watts, Small Worlds: The Dynamics of Networks Between Order and Randomness. Princeton Univ Pr, 2003. D. Watts and S. Strogatz, Collective dynamics of 'Small-World' Networks, Nature, vol. 393, no. 6684, pp. 440-442, 1998.

Examples

1
2
3
4
5
6
7
library(RBGL)
set.seed(123)
g <- randomGraph(1:8, 1:5, 0.36, weights=FALSE)

deg <- graph::degree(g)
localClusteringCoeff(g)
localClusteringCoeff(g,deg)

QuACN documentation built on May 2, 2019, 8:18 a.m.