graphGenerator: Generate an undirected graph with adjustable clustering...

Description Usage Arguments Details Value Author(s) References See Also Examples

View source: R/interfaces.R

Description

Generate an undirected graph with adjustable clustering coefficient

Usage

1
graphGenerator(n, d, o)

Arguments

n

no. of nodes in the generated graph

d

parameter for preferential attachment

o

parameter for triple generation

Details

The graph generator works according to the prefential attachment rule. It also generates graphs with adjustable clustering coefficient. Parameter d specifies how many preferred edges a new node has. Parameter o limits how many triples to add to a new node.

See reference for details.

Value

no. of nodes

No. of nodes in the generated graph

no. of edges

No. of edges in the generated graph

edges

Edges in the generated graph

Author(s)

Li Long <li.long@isb-sib.ch>

References

Approximating Clustering Coefficient and Transitivity, T. Schank, D. Wagner, Journal of Graph Algorithms and Applications, Vol. 9, No. 2 (2005).

See Also

clusteringCoef, transitivity, clusteringCoefAppr

Examples

1
2
3
4
n <- 20
d <- 6
o <- 3
gg <- graphGenerator(n, d, o)

RBGL documentation built on Nov. 8, 2020, 5 p.m.