if (FALSE) {
#############################################################################
# EXAMPLE 1: Imputation internat data
#############################################################################
data(data.internet, package="miceadds")
dat <- data.internet
#** empty imputation
imp0 <- mice::mice(dat, m=1, maxit=0)
method <- imp0$method
predmat <- imp0$predictorMatrix
#** define factor variable
dat1 <- dat
dat1[,1] <- as.factor(dat1[,1])
method[1] <- "catpmm"
#** impute with 'catpmm''
imp <- mice::mice(dat1, method=method1, m=5)
summary(imp)
}
Run the code above in your browser using DataLab