rnsbm {noisySBM} | R Documentation |
simulation of a graph according the noisy stochastic block model
Description
simulation of a graph according the noisy stochastic block model
Usage
rnsbm(n, theta, modelFamily = "Gauss", directed = FALSE)
Arguments
n |
number of nodes |
theta |
model parameters of the noisy stochastic block model
|
modelFamily |
probability distribution for the edges. Possible values:
|
directed |
indicates if the graph is directed (boolean) |
Value
a list with:
- dataMatrix
simulated matrix from the noisy stochastic block model
- theta
model parameters of the noisy stochastic block model
- latentZ
underlying latent node memberships
- latentAdj
underlying latent binary graph
Examples
n <- 10
Q <- 2
theta <- list(pi= rep(1/Q,Q), nu0=c(0,1))
theta$nu <- matrix(c(-2,10,-2, 1,1,1),nrow=Q*(Q+1)/2,ncol=2)
theta$w <- c(.5, .9, .3)
obs <- rnsbm(n, theta, modelFamily='Gauss')
obs
[Package noisySBM version 0.1.4 Index]