Generates graph adjacency matrix using a degree corrected SBM
rdcsbm
returns an adjacency matrix and the cluster labels generated randomly using a Degree Corrected Stochastic Block Model.
rdcsbm(N, pi, mu, betain, betaout)
N
: A numeric value the size of the graph to generatepi
: A numeric vector of length K with clusters proportions. Must sum up to 1.mu
: A numeric matrix of dim K x K with the connectivity pattern to generate, elements in [0,1].betain
: A numeric vector of length N which specify the in-degree correction will be normalized per cluster during the generation.betaout
: A numeric vector of length N which specify the out-degree correction will be normalized per cluster during the generation.A list with fields:
dgCMatrix
It takes the sample size, cluster proportions and emission matrix, and as input and sample a graph accordingly together with the clusters labels.
Useful links