Extracts the summary statistics from a list of glmmTMB models.
glance_tmb.Rd
This function takes a list of glmmTMB models and extracts the summary statistics (AIC, BIC, logLik, deviance, df.resid, and dispersion) for each model and returns them as a single DataFrame.
Examples
data(mtcars)
models <- fitModelParallel(Sepal.Length ~ Sepal.Width + Petal.Length,
group_by = "Species",n.cores = 1, data = iris)
#> Log file location: /tmp/RtmpS86cq0/htrfit.log
#> CPU(s) number : 1
#> Cluster type : PSOCK
result <- glance_tmb(models)