R/methods_DirichletReg.R

Defines functions sanitize_model_specific.DirichletRegModel get_predict.DirichletRegModel set_coef.DirichletRegModel get_coef.DirichletRegModel

Documented in get_coef.DirichletRegModel get_predict.DirichletRegModel sanitize_model_specific.DirichletRegModel set_coef.DirichletRegModel

#' @include sanity_model.R
#' @include get_coef.R
#' @rdname get_coef
#' @export
get_coef.DirichletRegModel <- function(model, ...) {
    coefs <- model$coefficients
    return(coefs)
}


#' @include set_coef.R
#' @rdname set_coef
#' @export
set_coef.DirichletRegModel <- function(model, coefs, ...) {
    model$coefficients <- coefs
    return(model)
}


#' @include get_predict.R
#' @rdname get_predict
#' @export
get_predict.DirichletRegModel <- function(model, newdata, ...) {
    pred <- stats::predict(model, newdata = newdata, ...)
    if (is.matrix(pred)) {
        if (is.null(colnames(pred))) {
            if ("varnames" %in% names(model)) {
                colnames(pred) <- model$varnames
            } else {
                colnames(pred) <- seq_len(ncol(pred))
            }
        }
        out <- data.frame(
            group = rep(colnames(pred), each = nrow(pred)),
            estimate = as.vector(pred)
        )
        out$group <- group_to_factor(out$group, model)
    } else if (is.atomic(pred)) {
        out <- data.frame(estimate = as.vector(pred))
    } else {
        stop("Unexpected prediction output type from DirichletReg::predict().")
    }
    out <- add_rowid(out, newdata)
    return(out)
}

#' @rdname sanitize_model_specific
#' @export
sanitize_model_specific.DirichletRegModel <- function(
    model,
    calling_function = "marginaleffects",
    ...
) {
    if (isTRUE(getOption("marginaleffects_safe", default = TRUE))) {
        warning(
            paste(
                "DirichletReg model support is experimental and numerical results",
                "have not been tested extensively. Contribute test cases at:",
                "https://github.com/vincentarelbundock/marginaleffects/issues/1636"
            ),
            call. = FALSE
        )
    }
    return(model)
}

Try the marginaleffects package in your browser

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

marginaleffects documentation built on Sept. 3, 2026, 9:08 a.m.