R/zzz_generics.R

Defines functions se

Documented in se

#' Standard Error of Model Coefficients
#'
#' Generic function to calculate the standard error of estimated coefficients
#' from a model object.
#'
#' @param object A model object.
#' @param ... Additional arguments passed to methods.
#'
#' @export
se <- function(object, ...) {
  UseMethod("se")
}

Try the CondCopulas package in your browser

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

CondCopulas documentation built on Nov. 24, 2025, 5:07 p.m.