Skip to contents

Sample a new graph by perturbing the adjacency matrix of a given graph and shuffling its vertices.

Usage

sample_correlated_gnp_pair(n, corr, p, directed = FALSE, permutation = NULL)

Arguments

n

Numeric scalar, the number of vertices for the sampled graphs.

corr

A scalar in the unit interval, the target Pearson correlation between the adjacency matrices of the original the generated graph (the adjacency matrix being used as a vector).

p

A numeric scalar, the probability of an edge between two vertices, it must in the open (0,1) interval.

directed

Logical scalar, whether to generate directed graphs.

permutation

A numeric vector, a permutation vector that is applied on the vertices of the first graph, to get the second graph. If NULL, the vertices are not permuted.

Value

A list of two igraph objects, named graph1 and graph2, which are two graphs whose adjacency matrix entries are correlated with corr.

Details

Please see the reference given below.

References

Lyzinski, V., Fishkind, D. E., Priebe, C. E. (2013). Seeded graph matching for correlated Erdős-Rényi graphs. https://arxiv.org/abs/1304.7844

igraph_correlated_pair_game().

Examples

gg <- sample_correlated_gnp_pair(
  n = 10, corr = .8, p = .5,
  directed = FALSE
)
gg
#> $graph1
#> IGRAPH 707f53d U--- 10 22 -- 
#> + edges from 707f53d:
#>  [1] 2-- 3 1-- 4 3-- 4 3-- 5 4-- 5 1-- 6 3-- 6 4-- 6 5-- 6 2-- 7 5-- 7 6-- 7
#> [13] 2-- 8 3-- 8 4-- 8 6-- 8 3-- 9 2--10 3--10 5--10 6--10 8--10
#> 
#> $graph2
#> IGRAPH 9f50efc U--- 10 25 -- 
#> + edges from 9f50efc:
#>  [1] 2-- 3 1-- 4 3-- 4 3-- 5 4-- 5 1-- 6 3-- 6 4-- 6 5-- 6 2-- 7 4-- 7 5-- 7
#> [13] 6-- 7 1-- 8 2-- 8 3-- 8 4-- 8 6-- 8 3-- 9 1--10 2--10 3--10 5--10 6--10
#> [25] 8--10
#> 
cor(as.vector(gg[[1]][]), as.vector(gg[[2]][]))
#> [1] 0.8864053