
Generate random graphs according to the \(G(n,m)\) Erdős-Rényi model
Source:R/games.R
sample_gnm.RdRandom graph with a fixed number of edges and vertices.
Details
The graph has n vertices and m edges. The edges are chosen uniformly
at random from the set of all vertex pairs. This set includes potential
self-connections as well if the loops parameter is TRUE.
See also
Random graph models (games)
bipartite_gnm(),
erdos.renyi.game(),
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_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()
Author
Gabor Csardi csardi.gabor@gmail.com
Examples
g <- sample_gnm(1000, 1000)
degree_distribution(g)
#> [1] 0.140 0.273 0.257 0.185 0.094 0.031 0.017 0.001 0.001 0.000 0.001