Skip to content
Prev 2435 / 20628 Next

Confidence intervals for effects in glmer()

It depends on what approximations you're willing to accept.

  Crudely doing +/- 2 standard deviations, or (DANGER DANGER)
using the 'known' df to compute t-scores (the "gm1" example
given in ?glmer has a fairly straightforward structure, with
15 groups):

library(lme4)
example(glmer)
s <- summary(gm1)@coefs

fac <- 2
s[,"Estimate"]+fac*outer(c(-1,1),s[,"Std. Error"])

fac <- qt(0.975,df=14)
s[,"Estimate"]+fac*outer(c(-1,1),s[,"Std. Error"])


  Does anyone know the current status of mcmcsamp,
either for LMMs or for GLMMs ... ?

  Ben Bolker
Robert A. LaBudde wrote: