Learn R Programming

mcen (version 1.2.1)

get_best_cvm: Gets the index position for the model with the smallest cross-validation error.

Description

Gets the index position for the model with the smallest cross-validation error.

Usage

get_best_cvm(model)

Value

Returns the index for the model with the smallest cross-validation error.

Arguments

model

The cv.mcen object.

Author

Ben Sherwood <ben.sherwood@ku.edu>, Brad Price <brad.price@mail.wvu.edu>

Examples

Run this code
# \donttest{
x <- matrix(rnorm(400),ncol=4)
beta <- beta <- matrix(c(1,1,0,0,0,0,-1,-1,0,0,-1,-1,1,1,0,0),ncol=4)
y <- x%*%beta + rnorm(400) 
mcen_fit <- cv.mcen(x,y,ky=2,gamma_y=3)
get_best_cvm(mcen_fit)
# }

Run the code above in your browser using DataLab