datlist2Amelia: Converting an Object of class 'amelia'

View source: R/datlist2Amelia.R

datlist2AmeliaR 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 mids

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)

miceadds documentation built on Jan. 7, 2023, 1:09 a.m.