RVAideMemoire (version 0.9-80)

overdisp.glmer: Estimation of overdispersion with glmer models

Description

Estimates 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
# NOT RUN {
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 DataCamp Workspace