Usage
RCMestimation(Y, X, R, hypothesis = "H2", shrinkType = "none",
estType = "normal", corType = "unif", maxNoIt = 100,
minSuccDist = 0.005, verbose = FALSE)
Arguments
Y
The matrix containing the (e.g., expression) data (number of columns equal to number of features, number of rows equal to number of samples).
X
The design matrix (number of rows equal to number of samples, number of columns equal to number of covariates).
R
The linear constraint matrix (number of columns equal to the number of covariates).
hypothesis
The hypothesis under which the model is fitted: H0 (H0 : R beta = 0 & tau2 = 0), H1 (H1 : R beta >= 0 & tau2 = 0), H2 (H2 : R beta >= 0 & tau2 >= 0).
shrinkType
The type of shrinkage to be applied to the error variances: none (shrinkage parameter is set equal to zero: no shrinkage), opt (shrinkage parameter is chosen to minimize the mean squared error criterion) or full (shrinkage parameter is set equal to one).
estType
Type of estimation, either normal (non-robust) or robust.
corType
Correlation structure to be used, either unif or ar1.
maxNoIt
Maximum number of iterations in the ML procedure.
minSuccDist
Minimum distance between estimates of two successive iterations to be achieved.
verbose
Logical indicator: should intermediate output be printed on the screen?