Generic functions for merModList objects not quite right, via e-mail:
Just checked again – print now works fine with the merModlist object (appears to give the pooled estimates with Rubin correction) as does fixef and summary (which gives all 10 model outputs), but the functions print.merModList, print.summary.merModList, and summary.merModList still don’t appear to be in the current version.
And here's an example:
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)
summary(mod)
print, summary, and print.summary don't work.
fastdisp and fastdisp, detail = TRUE do work though
Generic functions for merModList objects not quite right, via e-mail:
And here's an example:
print
,summary
, andprint.summary
don't work.fastdisp
andfastdisp, detail = TRUE
do work though