Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

sample_gnp

Generate random graphs according to the G(n,p) Erdos-Renyi model


Description

This model is very simple, every possible edge is created with the same constant probability.

Usage

sample_gnp(n, p, directed = FALSE, loops = FALSE)

gnp(...)

Arguments

n

The number of vertices in the graph.

p

The probability for drawing an edge between two arbitrary vertices (G(n,p) graph).

directed

Logical, whether the graph will be directed, defaults to FALSE.

loops

Logical, whether to add loop edges, defaults to FALSE.

...

Passed to sample_app.

Details

The graph has ‘n’ vertices and for each edge the probability that it is present in the graph is ‘p’.

Value

A graph object.

Author(s)

References

Erdos, P. and Renyi, A., On random graphs, Publicationes Mathematicae 6, 290–297 (1959).

See Also

Examples

g <- sample_gnp(1000, 1/1000)
degree_distribution(g)

igraph

Network Analysis and Visualization

v1.2.10
GPL (>= 2)
Authors
See AUTHORS file.
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.