How to get coefficients and their confidence intervals in mixed effects models?

Not sure when it was added, but now confint() is implemented in lme4.
For example the following example works:

library(lme4)
m = lmer(Reaction ~ Days + (Days | Subject), sleepstudy)
confint(m)

Leave a Comment