R/methods_systemfit.R

Defines functions get_vcov.systemfit get_coef.systemfit

Documented in get_coef.systemfit get_vcov.systemfit

#' @rdname get_coef
#' @export
get_coef.systemfit <- function(model, ...) {
    out <- stats::coef(model)
    return(out)
}

#' @rdname get_vcov
#' @export
get_vcov.systemfit <- function(model, ...) {
    out <- stats::vcov(model)
    return(out)
}

Try the marginaleffects package in your browser

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

marginaleffects documentation built on April 4, 2025, 4:36 a.m.