3 #' Generate a sample of (X,Y) of size n
5 #' @param n sample size
6 #' @param π proportion for each cluster
7 #' @param meanX matrix of group means for covariates (of size p)
8 #' @param covX covariance for covariates (of size p*p)
9 #' @param β regression matrix, of size p*m*k
10 #' @param covY covariance for the response vector (of size m*m*K)
12 #' @return list with X and Y
15 generateXY = function(n, π, meanX, β, covX, covY)
21 X <- matrix(nrow=0, ncol=p)
22 Y <- matrix(nrow=0, ncol=m)
24 #random generation of the size of each population in X~Y (unordered)
25 sizePop <- rmultinom(1, n, π)
26 class <- c() #map i in 1:n --> index of class in 1:k
30 class <- c(class, rep(i, sizePop[i]))
31 newBlockX <- MASS::mvrnorm(sizePop[i], meanX, covX)
32 X <- rbind( X, newBlockX )
33 Y <- rbind( Y, t(apply( newBlockX, 1, function(row)
34 MASS::mvrnorm(1, row %*% β[,,i], covY[,,i]) )) )
38 list("X"=X[shuffle,], "Y"=Y[shuffle,], "class"=class[shuffle])