Last data update: 2014.03.03

R: Read 'mitml' objects from file
read.mitmlR Documentation

Read mitml objects from file

Description

This function loads mitml class objects from native R formats.

Usage


read.mitml(filename)

Arguments

filename

Name of the file to read, to be specified with file extension (e.g., .R, .Rdata).

Value

Returns the saved mitml class object.

Author(s)

Simon Grund

See Also

panImpute, jomoImpute, write.mitml

Examples

data(studentratings)

fml <- ReadDis + SES ~ ReadAchiev + (1|ID)
imp <- panImpute(studentratings, formula=fml, n.burn=1000, n.iter=100, m=5)

# write 'mitml' object
write.mitml(imp, filename="imputation.R")

# read previously saved 'mitml' object
previous.imp <- read.mitml("imputation.R")

class(previous.imp)
previous.imp

Results