datlist2Amelia {miceadds} | R Documentation |
Converting an Object of class amelia
Description
This function converts a list of multiply imputed data sets
to an object of class amelia
.
Usage
datlist2Amelia(datlist)
Arguments
datlist |
List of multiply imputed data sets or an object of class |
Value
An object of class amelia
Examples
## Not run:
#############################################################################
# EXAMPLE 1: Imputation of NHANES data using mice package
#############################################################################
library(mice)
library(Amelia)
data(nhanes,package="mice")
set.seed(566) # fix random seed
# imputation with mice
imp <- mice::mice(nhanes, m=7)
# conversion to amelia object
amp <- miceadds::datlist2Amelia(datlist=imp)
str(amp)
plot(amp)
print(amp)
summary(amp)
## End(Not run)
[Package miceadds version 3.17-44 Index]