Displaying 1 result from an estimated 1 matches for "mod1nullml".
Did you mean:
mod0nullml
2007 Sep 19
1
lmer using quasibinomial family
...C logLik Chisq Chi Df Pr(>Chisq)
mod0NULLML 2 875.68 882.07 -435.84
mod0ML 3 872.85 882.43 -433.43 4.8307 1 0.02796 *
---
Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
mod1ML<-lmer(Y~X+(1|Group),family=quasibinomial,type="ML")
mod1NULLML<-lmer(Y~1+(1|Group),family=quasibinomial,type="ML")
anova(mod1ML,mod1NULLML,test="F")
mod1NULLML: Y ~ 1 + (1 | Group)
mod1ML: Y ~ X + (1 | Group)
Df AIC BIC logLik Chisq Chi Df Pr(>Chisq) # F test does not occur!!!
mod1NULLML 2 875.68 882.07 -435.84
mod1ML 3 872.85...