complete(x, action=1)
'mids'
(created by the function mice()
).x$m
,
the function returns the data with the action's
imputation filled in. Thus, action=1
returns
the first
completed data set.
The can also be one of the following
mice
, mids
data(nhanes)
imp <- mice(nhanes) # do default multiple imputation on a numeric matrix
mat <- complete(imp) # fills in the first imputation
mat <- complete(imp, 3) # fills in the third imputation
mat <- complete(imp, "long") # produces a long matrix with stacked complete data
mat <- complete(imp, "b") # a broad matrix
cor(mat) # for numeric mat, produces a blocked correlation matrix, where
# each m*m block contains of the same variable pair over different
# multiple imputations.
Run the code above in your browser using DataLab