Generate random signed graphs according to the G(n,p) Erdos-Renyi model
Source:R/random_graphs.R
sample_gnp_signed.Rd
Generate random signed graphs according to the G(n,p) Erdos-Renyi model
Arguments
- n
The number of vertices in the graph.
- p
The probability for drawing an edge between two arbitrary vertices.
- p_neg
The probability of a drawn edge to be a negative tie
- directed
logical, whether the graph will be directed. defaults to FALSE.
- loops
logical, whether to add loop edges, defaults to FALSE.
Examples
sample_gnp_signed(10, 0.4, 0.5)
#> IGRAPH 1cf5a56 U--- 10 18 -- Erdos-Renyi (gnp) graph
#> + attr: name (g/c), type (g/c), loops (g/l), p (g/n), sign (e/n)
#> + edges from 1cf5a56:
#> [1] 1-- 2 1-- 3 1-- 4 2-- 4 3-- 6 4-- 6 5-- 6 2-- 7 4-- 7 2-- 8 3-- 8 5-- 8
#> [13] 3-- 9 5-- 9 7-- 9 2--10 5--10 8--10