Learn R Programming

miceadds (version 3.17-44)

datlist2Amelia: 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)

Value

An object of class amelia

Arguments

datlist

List of multiply imputed data sets or an object of class mids

Examples

Run this code
if (FALSE) {
#############################################################################
# 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)
}

Run the code above in your browser using DataLab