Generate data from a mixture of regression model
rmreg
returns an X matrix, a y vector and the cluster labels generated randomly with a Mixture of regression model.
rmreg( N, pi, A, sigma, X = cbind(rep(1, N), matrix(stats::rnorm(N * (ncol(A) - 1)), N, ncol(A) - 1)) )
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)A
: A numeric matrix of dim K x d with the regression coefficientsigma
: A numeric of length 1 with the target conditional varianceX
: A matrix of covariateA list with fields:
It takes the sample size, cluster proportions and regression parameters matrix and variance as input accordingly
Useful links