Skip to content
Prev 11919 / 20628 Next

"parm" parameter in lme4::confint.merMod

Hi Jake,

I think fixef() or names(fixef()) gives you what you want:

require(lme4)
data(md_16.4, package = "afex")
m1 <-  lmer(induct ~ cond*cog + (cog|room:cond), md_16.4)

fixef(m1)
## (Intercept)       cond1         cog   cond1:cog
## -6.14153043 10.32001485  0.66722061 -0.02520666

confint(m1, parm = c(3,2), method="Wald")
##             2.5 %    97.5 %
## cog     0.2498764  1.084565
## cond1 -18.4845630 39.124593

I hope I didn't misunderstand your question,
Henrik


Am 18.05.2014 08:03, schrieb Jake Westfall: