Compute the prediction error for the heteroscedastic envelope estimator using m-fold cross validation.
cv.henv(X, Y, u, m, nperm)
The output is a real nonnegative number.
The prediction error estimated by m-fold cross validation.
A group indicator vector of length
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.
Dimension of the heteroscedastic envelope. An integer between 0 and r.
A positive integer that is used to indicate m
-fold cross
validation.
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.
data(waterstrider)
X <- waterstrider[ , 1]
Y <- waterstrider[ , 2:5]
m <- 5
nperm <- 50
if (FALSE) cvPE <- cv.henv(X, Y, 2, m, nperm)
if (FALSE) cvPE
Run the code above in your browser using DataLab