When using lmer, one can compare two models using anova:
mod.ld.frq = lmer(ln_rt_offset ~ 1 + lfrq +
(1 + lfrq | PID) + (1| Item),
data=ldfw.std)
mod.ld.frq.dur = lmer(ln_rt_offset ~ 1 + lfrq + duration +
(1 + lfrq | PID) + (1| Item),
data=ldfw.std)
anova(mod.ld.frq, mod.ld.frq.dur)
What is the equivalent for jglmm, e.g.:
jmod.ld.frq = jglmm(ln_rt_offset ~ 1 + lfrq +
(1 + lfrq | PID) + (1| Item),
data=ldfw.std)
jmod.ld.frq.dur = jglmm(ln_rt_offset ~ 1 + lfrq + duration +
(1 + lfrq | PID) + (1| Item),
data=ldfw.std)
If I try using anova, I get an error like this:
anova(jmod.ld.frq, jmod.ld.frq.dur.phon)
Error in UseMethod("anova") :
no applicable method for 'anova' applied to an object of class "jglmm"
Thank you for any advice!
This doesn't seem to exist, but I wrote a crude
anova
function based on the existingjglmm::extractAIC.jglmm
method, which has to extract the same information (df, log-likelihood) from the model.jglmm
results:Compare with
lme4
:Results:
The
lme4
results are much prettier, but the key components (change in deviance, change in df, p-value) are the same.On second thought, we could have done this more easily by calling the
logLik
accessor method for the fit (the returned information includes both the log-likelihood and the df) and putting that into themy_anova()
function ...