erdos.renyi.game {igraph} | R Documentation |
Generate random graphs according to the Erdős-Rényi model
Description
Since igraph version 0.8.0, both erdos.renyi.game()
and
random.graph.game()
are deprecated, and sample_gnp()
and
sample_gnm()
should be used instead. See these for more details.
random.graph.game()
is an (also deprecated) alias to this function.
Usage
erdos.renyi.game(
n,
p.or.m,
type = c("gnp", "gnm"),
directed = FALSE,
loops = FALSE
)
Arguments
n |
The number of vertices in the graph. |
p.or.m |
Either the probability for drawing an edge between two
arbitrary vertices ( |
type |
The type of the random graph to create, either |
directed |
Logical, whether the graph will be directed, defaults to
|
loops |
Logical, whether to add loop edges, defaults to |
Value
A graph object.
Author(s)
Gabor Csardi csardi.gabor@gmail.com
References
Erdős, P. and Rényi, A., On random graphs, Publicationes Mathematicae 6, 290–297 (1959).
See Also
Random graph models (games)
sample_()
,
sample_bipartite()
,
sample_chung_lu()
,
sample_correlated_gnp()
,
sample_correlated_gnp_pair()
,
sample_degseq()
,
sample_dot_product()
,
sample_fitness()
,
sample_fitness_pl()
,
sample_forestfire()
,
sample_gnm()
,
sample_gnp()
,
sample_grg()
,
sample_growing()
,
sample_hierarchical_sbm()
,
sample_islands()
,
sample_k_regular()
,
sample_last_cit()
,
sample_pa()
,
sample_pa_age()
,
sample_pref()
,
sample_sbm()
,
sample_smallworld()
,
sample_traits_callaway()
,
sample_tree()
Examples
g <- erdos.renyi.game(1000, 1 / 1000)
degree_distribution(g)