modelInfo | R Documentation |
Extract model information from a merMod
modelInfo(object)
object |
a merMod object |
Simple summary information about the object, number of observations, number of grouping terms, AIC, and residual standard deviation
sim_list <- replicate(n = 10,
expr = sleepstudy[sample(row.names(sleepstudy), 180),],
simplify=FALSE)
fml <- "Reaction ~ Days + (Days | Subject)"
mod <- lmerModList(fml, data = sim_list)
modelInfo(mod[[1]])
lapply(mod, modelInfo)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.