R/AIC.R

Defines functions AIC.garma_model

Documented in AIC.garma_model

#' AIC for model
#'
#' Approximate AIC for model.
#'
#' @param object The garma_model object
#' @param ... Other parameters. Ignored.
#' @return (double) Approximate AIC - uses approximation of whichever methoid is used to find model params.
#' @export
AIC.garma_model <- function(object, ...) {
  return(object$aic)
}

Try the garma package in your browser

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

garma documentation built on April 4, 2025, 2:13 a.m.