R/methods.R

Defines functions confint.betaboost predict.betaboost

Documented in confint.betaboost predict.betaboost

## specific methods

confint.betaboost <- function(object, ...) {
  if (inherits(object, "mboostLSS"))
    stop("confidence intervals for beta regression with modeled precision parameter currently not implemented")
  NextMethod("confint", object)
}

predict.betaboost <- function(object, newdata = NULL,
                              type = c("link", "response", "class"), which = NULL,
                              aggregate = c("sum", "cumsum", "none"), ...) {
  NextMethod("predict", object)
}
boost-R/betaboost documentation built on May 5, 2019, 4:51 p.m.