Skip to content
Prev 132406 / 398506 Next

How can I extract the AIC score from a mixed model object produced using lmer?

You can calculate the AIC as follows:

(fm1 <- lmer(Reaction ~ Days + (Days|Subject), sleepstudy))
aic1 <- AIC(logLik(fm1))

Hope this helps.
Dave
On 12/18/07, Peter H Singleton <psingleton at fs.fed.us> wrote: