R/coef.R

Defines functions coef.garma_model

Documented in coef.garma_model

#' Model Coefficients
#'
#' Model Coefficients/parameters.
#' @param object The garma_model object
#' @param ... Other parameters. Ignored.
#' @return (double) array of parameter value estimates from the fitted model.
#' @export
coef.garma_model <- function(object, ...) {
  return(object$coef[1, ])
}
rlph50/tsggbr documentation built on June 12, 2025, 5:27 p.m.