R/network_gen.R
network_gen.Rd
Generate random network topology
network_gen(number_genes, clust_coef)
number_genes | A number |
---|---|
clust_coef | A number |
A list with the number of of genes, the targeted clustering coefficient and the resulting network
network_gen(10,1)#> $number_genes #> [1] 10 #> #> $clust_coef #> [1] 1 #> #> $network #> [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10] #> [1,] 0 0 0 0 0 0 0 0 0 0 #> [2,] 0 0 0 1 0 0 0 0 1 -1 #> [3,] 1 0 0 0 0 0 0 0 0 0 #> [4,] 0 0 1 0 1 0 -1 0 0 0 #> [5,] 0 0 0 0 0 0 0 0 0 0 #> [6,] 0 0 0 0 0 0 0 0 0 0 #> [7,] 0 0 0 0 0 0 0 1 0 0 #> [8,] 0 0 0 0 0 0 0 0 0 0 #> [9,] 0 0 0 0 0 1 0 0 0 0 #> [10,] 0 0 0 0 0 0 0 0 0 0 #>