R/cv.elnet.R

Defines functions cv.elnet

Documented in cv.elnet

cv.elnet <-function(predmat,y,type.measure,weights,foldid,grouped){

    N = length(y) - apply(is.na(predmat), 2, sum)
    cvraw = switch(type.measure,
                   mse = (y - predmat)^2,
                   deviance = (y - predmat)^2,
                   mae = abs(y - predmat))
    list(cvraw=cvraw,weights=weights,N=N,type.measure=type.measure,grouped=grouped)

}

Try the glmnet package in your browser

Any scripts or data that you put into this service are public.

glmnet documentation built on Aug. 22, 2023, 9:12 a.m.