Skip to content
Snippets Groups Projects
Select Git revision
  • eab4cb6bbf2251c3353c6fa16c6e3be9d0d49262
  • master default protected
  • dev
  • v2.0.0
  • v0.4.0
  • v0.3.0
  • v0.2.9
  • v0.2.8
  • v0.2.7
  • v0.2.6
  • v0.1.0
  • v0.2.5
  • v0.2.4
  • v0.2.3
  • v0.2.2
  • v0.2.1
  • v0.2.0
  • v0.1.2
18 results

README.md

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)
    }