Learn R Programming

RVAideMemoire (version 0.9-35)

overdisp.glmer: Estimation of overdispersion with glmer models

Description

Estimate residual deviance and residual degrees of freedom to check for overdispersion with glmer models. This function is directly comming from http://glmm.wikidot.com/faq.

Usage

overdisp.glmer(model)

Arguments

model
a model fitted by glmer.

See Also

glmer

Examples

Run this code
require(lme4)

# Example from the 'glmer' function
gm1 <- glmer(cbind(incidence,size-incidence)~period+(1|herd),
 family="binomial",data=cbpp)
overdisp.glmer(gm1)

Run the code above in your browser using DataLab