Extract Tidy Summary of glmmTMB Model
getTidyGlmmTMB.Rd
This function extracts a tidy summary of the fixed and random effects from a glmmTMB model and binds them together in a data frame. Missing columns are filled with NA.
Value
A data frame containing a tidy summary of the fixed and random effects from the glmmTMB model.
Examples
model <- glmmTMB::glmmTMB(Sepal.Length ~ Sepal.Width + Petal.Length, data = iris)
tidy_summary <- getTidyGlmmTMB(glm_TMB = model, ID = "Model1")