Skip to content
Snippets Groups Projects
Select Git revision
  • c051b515a05f4172c4421df5e519ee6cec8a0c63
  • master default protected
  • v2.1.1
  • v2.1.0
4 results

getGlance.Rd

Blame
  • getGlance.Rd 638 B
    % Generated by roxygen2: do not edit by hand
    % Please edit documentation in R/glance_glmmtmb.R
    \name{getGlance}
    \alias{getGlance}
    \title{Extracts the summary statistics from a single glmmTMB model.}
    \usage{
    getGlance(x)
    }
    \arguments{
    \item{x}{A glmmTMB model.}
    }
    \value{
    A DataFrame with the summary statistics for the glmmTMB model.
    }
    \description{
    This function takes a single glmmTMB model and extracts the summary statistics (AIC, BIC, logLik, deviance,
    df.resid, and dispersion) from the model and returns them as a DataFrame.
    }
    \examples{
    data(mtcars)
    model <- glmmTMB::glmmTMB(mpg ~ wt + (1|cyl), data = mtcars)
    getGlance(model)
    }