cv.genv | R Documentation |
Compute the prediction error for the groupwise envelope estimator using m-fold cross validation.
cv.genv(X, Y, Z, u, m, nperm)
X |
Predictors. An n by p matrix, p is the number of predictors. The predictors can be univariate or multivariate, discrete or continuous. |
Y |
Multivariate responses. An n by r matrix, r is the number of responses and n is number of observations. The responses must be continuous variables. |
Z |
A group indicator vector of length |
u |
Dimension of the groupwise envelope. An integer between 0 and r. |
m |
A positive integer that is used to indicate |
nperm |
A positive integer indicating number of permutations of the observations, m-fold cross validation is run on each permutation. |
This function computes prediction errors using m-fold cross validation. For a fixed dimension u, the data is randomly partitioned into m parts, each part is in turn used for testing for the prediction performance while the rest m-1 parts are used for training. This process is repeated for nperm
times, and average prediction error is reported. As Y is multivariate, the identity inner product is used for computing the prediction errors.
The output is a real nonnegative number.
cvPE |
The prediction error estimated by m-fold cross validation. |
data(fiberpaper)
X <- fiberpaper[ , c(5, 7)]
Y <- fiberpaper[ , 1:3]
Z <- as.numeric(fiberpaper[ , 6] > mean(fiberpaper[ , 6]))
## Not run: m <- 5
## Not run: nperm <- 50
## Not run: cvPE <- cv.genv(X, Y, Z, 2, m, nperm)
## Not run: cvPE
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.