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, ])
}

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.