#' A robust alternative to stats::family
#'
#' A robust and resilient alternative to `stats::family`. To avoid issues
#' with models like `gamm4`.
#'
#' @param x A statistical model.
#' @param ... Further arguments passed to methods.
#'
#' @examplesIf require("mgcv")
#' data(mtcars)
#' x <- glm(vs ~ wt, data = mtcars, family = "binomial")
#' get_family(x)
#'
#' x <- mgcv::gamm(
#' vs ~ am + s(wt),
#' random = list(cyl = ~1),
#' data = mtcars,
#' family = "binomial"
#' )
#' get_family(x)
#' @export
get_family <- function(x, ...) {
UseMethod("get_family")
}
#' @export
get_family.default <- function(x, ...) {
fam <- .safe(stats::family(x, ...))
if (is.null(fam)) {
fam <- .safe(.get_family(x, ...))
}
fam
}
#' @export
get_family.list <- function(x, ...) {
if ("gam" %in% names(x)) {
.get_family(x)
} else {
format_error("Could not retrieve family from this list. Check the input.")
}
}
#' @export
get_family.model_fit <- function(x, ...) {
get_family(x$fit, ...)
}
.get_family <- function(x, ...) {
info <- model_info(x, verbose = FALSE)
if (info$family == "binomial") {
fam <- stats::binomial(link = info$link_function)
} else if (info$is_linear) {
fam <- stats::gaussian(link = "identity")
} else if (info$is_poisson) {
fam <- stats::poisson(link = info$link_function)
} else {
format_error(
paste0("Could not retrieve family from this object of class `", class(x)[1], "`."),
"Open an issue at {.url https://github.com/easystats/insight/issues}"
)
}
fam
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.