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)
}
rlph50/garma documentation built on June 8, 2025, 3:15 a.m.