Learn R Programming

merTools (version 0.5.2)

summary.merModList: Print the results of a merMod list

Description

Print the results of a merMod list

Usage

# S3 method for merModList
summary(object, ...)

Value

summary content printed to console

Arguments

object

a modList of class merModList

...

additional arguments

Examples

Run this code
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)
print(mod)

Run the code above in your browser using DataLab