| fastdisp {merTools} | R Documentation |
A faster version of the arm::display function that
is quicker because it does not refit the model to extract the deviance
fastdisp(merMod, ...)
merMod |
a merMod object from the lme4 package |
... |
additional arguments to pass to |
The time saving is only noticeable for large, time-consuming (g)lmer fits.
A printed summary of a merMod object
## Not run: #Compare the time for displaying this modest model require(arm) m1 <- lmer(y ~ lectage + studage + (1|d) + (1|s), data=InstEval) system.time(display(m1)) system.time(fastdisp(m1)) ## End(Not run)