The function sample.cont
generates a random sample with p predictors X, a response Y,
and n observations, through a linear model Y=XB+E, where the noise E is gaussian,
the coefficients B are sparse, and the design matrix X is composed of correlated blocks of
predictors.
sample.cont(n, p, kstar, lstar, beta.min, beta.max, mean.H=0, sigma.H,
sigma.F, sigma.E, seed=NULL)
A list with the following components:
the (n x p) design matrix, containing the n
observations for each of the
p
predictors.
the (n) vector of Y observations.
the (n) vector corresponding to the noise E
in the model
Y = X %*% B + E
.
the index in (1:p) of covariates with non null coefficients in B
.
the index in (1:p) of covariates with null coefficients in B
.
the (n) vector of coefficients.
a (p) vector indicating the block of each predictors in (1:kstar).
the number of covariates in the sample.
the number of underlying latent variables used to generates the design matrix
X
, kstar <= p
. kstar
is also the number of blocks in the design matrix
(see details).
the number of blocks in the design matrix X
that are used to generates the
response Y
, i.e. with non null coefficients in vector B
, lstar <= kstar
.
the number of predictors with non null coefficients in B
.
a (lstar) vector indicating the index in (1:kstar) of blocks with predictors
having non null coefficient in B
.
the inf bound for non null coefficients (see details).
the sup bound for non null coefficients (see details).
the mean of latent variables used to generates X
.
the standard deviation of latent variables used to generates X
.
the standard deviation of the noise added to latent variables used to
generates X
.
the standard deviation of the noise in the linear model.
an positive integer, if non NULL it fix the seed (with the command
set.seed
) used for random number generation.
the number of observations in the sample.
the number of covariates in the sample.
the number of underlying latent variables used to generates the design matrix
X
, kstar <= p
. kstar
is also the number of blocks in the design matrix
(see details).
the number of blocks in the design matrix X
that are used to generates the
response Y
, i.e. with non null coefficients in vector B
, lstar <= kstar
.
the inf bound for non null coefficients (see details).
the sup bound for non null coefficients (see details).
the mean of latent variables used to generates X
.
the standard deviation of latent variables used to generates X
.
the standard deviation of the noise added to latent variables used to
generates X
.
the standard deviation of the noise in the linear model
Y = X %*%* B + E
used to generates Y
.
an positive integer, if non NULL it fix the seed (with the command
set.seed
) used for random number generation.
Ghislain Durif (https://gdurif.perso.math.cnrs.fr/).
The set (1:p) of predictors is partitioned into kstar block. Each block k (k=1,...,kstar) depends on a latent variable H.k which are independent and identically distributed following a distribution N(mean.H, sigma.H^2). Each columns X.j of the matrix X is generated as H.k + F.j for j in the block k, where F.j is independent and identically distributed gaussian noise N(0,sigma.F^2).
The coefficients B are generated as random between beta.min and beta.max on lstar blocks, randomly chosen, and null otherwise. The variables with non null coefficients are then relevant to explain the response, whereas the ones with null coefficients are not.
The response is generated as Y = X %*% B + E, where E is some gaussian noise N(0,sigma.E^2).
The details of the procedure are developped by Durif et al. (2018).
Durif, G., Modolo, L., Michaelsson, J., Mold, J.E., Lambert-Lacroix, S., Picard, F., 2018. High dimensional classification with combined adaptive sparse PLS and logistic regression. Bioinformatics 34, 485–493. tools:::Rd_expr_doi("10.1093/bioinformatics/btx571"). Available at http://arxiv.org/abs/1502.05933.
sample.bin
.
### load plsgenomics library
library(plsgenomics)
### generating data
n <- 100
p <- 1000
sample1 <- sample.cont(n=n, p=p, kstar=20, lstar=2, beta.min=0.25, beta.max=0.75, mean.H=0.2,
sigma.H=10, sigma.F=5, sigma.E=5)
str(sample1)
Run the code above in your browser using DataLab