no need to generate random IO params: migrate in test. Add roxygen2 NAMESPACE-generat...
[valse.git] / test / generate_test_data / helper.R
diff --git a/test/generate_test_data/helper.R b/test/generate_test_data/helper.R
new file mode 100644 (file)
index 0000000..49cd1b5
--- /dev/null
@@ -0,0 +1,53 @@
+#' Generate a sample of (X,Y) of size n with default values
+#' @param n sample size
+#' @param p number of covariates
+#' @param m size of the response
+#' @param k number of clusters
+#' @return list with X and Y
+#' @export
+generateXYdefault = function(n, p, m, k)
+{
+       meanX = rep(0, p)
+       covX = diag(p)
+       covY = array(dim=c(m,m,k))
+       for(r in 1:k)
+               covY[,,r] = diag(m)
+       pi = rep(1./k,k)
+       #initialize beta to a random number of non-zero random value
+       beta = array(0, dim=c(p,m,k))
+       for (j in 1:p)
+       {
+               nonZeroCount = sample(1:m, 1)
+               beta[j,1:nonZeroCount,] = matrix(runif(nonZeroCount*k), ncol=k)
+       }
+
+       sample_IO = generateXY(meanX, covX, covY, pi, beta, n)
+       return (list(X=sample_IO$X,Y=sample_IO$Y))
+}
+
+#' Initialize the parameters in a basic way (zero for the conditional mean, uniform for weights,
+#' identity for covariance matrices, and uniformly distributed for the clustering)
+#' @param n sample size
+#' @param p number of covariates
+#' @param m size of the response
+#' @param k number of clusters
+#' @return list with phiInit, rhoInit,piInit,gamInit
+#' @export
+basicInitParameters = function(n,p,m,k)
+{
+       phiInit = array(0, dim=c(p,m,k))
+
+       piInit = (1./k)*rep(1,k)
+
+       rhoInit = array(dim=c(m,m,k))
+       for (i in 1:k)
+               rhoInit[,,i] = diag(m)
+
+       gamInit = 0.1 * matrix(1, nrow=n, ncol=k)
+       R = sample(1:k, n, replace=TRUE)
+       for (i in 1:n)
+               gamInit[i,R[i]] = 0.9
+       gamInit = gamInit/sum(gamInit[1,])
+
+       return (list("phiInit" = phiInit, "rhoInit" = rhoInit, "piInit" = piInit, "gamInit" = gamInit))
+}