R/cv.comp.reg.R

Defines functions cv.comp.reg

Documented in cv.comp.reg

cv.comp.reg <- function(y, x, type = "comp.reg", nfolds = 10, folds = NULL, seed = NULL) {

   n <- dim(y)[1]
   ina <- 1:n
   if (is.null(folds))  folds <- Compositional::makefolds(ina, nfolds = nfolds, stratified = FALSE, seed = seed)
    nfolds <- length(folds)
    kl <- numeric(nfolds)
    js <- kl
    x <- model.matrix(y ~., data.frame(x) )

    if ( type == "robust" ) {
      runtime <- proc.time()
      for ( i in 1:nfolds) {
        ytest <- y[ folds[[ i ]], ]  ## test set dependent vars
        ytrain <- y[ -folds[[ i ]], ]  ## train set dependent vars
        xtest <- x[ folds[[ i ]], -1, drop = FALSE]  ## test set independent vars
        xtrain <- x[ -folds[[ i ]], -1, drop = FALSE]  ## train set independent vars
        est <- Compositional::comp.reg( ytrain, xtrain, xnew = xtest, type = "robust")$est
        ela <- abs( ytest * log( ytest / est ) )
        ela[ is.infinite(ela) ] <- NA
        kl[i] <-  2 * mean(ela, na.rm = TRUE)
        ela2 <- ytest * log( 2 * ytest / (ytest + est) ) + est * log( 2 * est / (ytest + est) )
        ela2[ is.infinite(ela2) ] <- NA
        js[i] <- mean(ela2, na.rm = TRUE)
      }
      runtime <- proc.time() - runtime

   } else if ( type == "comp.reg" ) {
     reg <- Compositional::comp.reg
   } else if (type == "kl.compreg" ) {
     reg <- Compositional::kl.compreg
   } else if (type == "js.compreg" ) {
     reg <- Compositional::js.compreg
   } else if (type == "ols.compreg" ) {
     reg <- Compositional::ols.compreg
   } else if (type == "diri.reg" ) {
     reg <- Compositional::diri.reg
   } else if (type == "zadr" ) {
     reg <- Compositional::zadr
   }

   runtime <- proc.time()
   for ( i in 1:nfolds) {
     ytest <- y[ folds[[ i ]], ]  ## test set dependent vars
     ytrain <- y[ -folds[[ i ]], ]  ## train set dependent vars
     xtest <- x[ folds[[ i ]], -1, drop = FALSE]  ## test set independent vars
     xtrain <- x[ -folds[[ i ]], -1, drop = FALSE]  ## train set independent vars
     est <- reg( ytrain, xtrain, xnew = xtest)$est
     ela <- abs( ytest * log( ytest / est ) )
     ela[ is.infinite(ela) ] <- NA
     kl[i] <-  2 * mean(ela, na.rm = TRUE)
     ela2 <- ytest * log( 2 * ytest / (ytest + est) ) + est * log( 2 * est / (ytest + est) )
     ela2[ is.infinite(ela2) ] <- NA
     js[i] <- mean(ela2, na.rm = TRUE)
   }
   runtime <- proc.time() - runtime
   perf <- c( mean(kl), mean(js) )
   names(perf) <- c( "KL", "JS")
   list(runtime = runtime, kl = kl, js = js, perf = perf )
}

Try the Compositional package in your browser

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

Compositional documentation built on Oct. 23, 2023, 5:09 p.m.