mice (version 2.25)

glm.mids: Generalized linear model for mids object

Description

Applies glm() to a multiply imputed data set

Usage

glm.mids(formula, family = gaussian, data, ...)

Arguments

formula
a formula expression as for other regression models, of the form response ~ predictors. See the documentation of lm and formula for details.
family
The family of the glm model
data
An object of type mids, which stands for 'multiply imputed data set', typically created by function mice().
...
Additional parameters passed to glm.

Value

An objects of class mira, which stands for 'multiply imputed repeated analysis'. This object contains data$m distinct glm.objects, plus some descriptive information.

Details

This function is included for backward compatibility with V1.0. The function is superseeded by with.mids.

References

Van Buuren, S., Groothuis-Oudshoorn, C.G.M. (2000) Multivariate Imputation by Chained Equations: MICE V1.0 User's manual. Leiden: TNO Quality of Life.

See Also

with.mids, glm, mids, mira

Examples

Run this code
imp <- mice(nhanes)

# logistic regression on the imputed data
fit <- glm.mids((hyp==2)~bmi+chl, data=imp, family = binomial)
fit

Run the code above in your browser using DataLab