View source: R/mitmlComplete.R
mitmlComplete | R Documentation |
This function extracts imputed data sets from mitml
class objects as produced by panImpute
and jomoImpute
.
mitmlComplete(x, print = "all", force.list = FALSE)
x |
An object of class |
print |
Either an integer vector, |
force.list |
(optional) Logical flag indicating if single data sets should be enclosed in a list. Default is |
Usually a list of imputed data with class mitml.list
If only one data set is extracted: a data frame unless force.list = TRUE
.
Simon Grund
panImpute
, jomoImpute
data(studentratings)
fml <- ReadDis + SES ~ ReadAchiev + (1|ID)
imp <- panImpute(studentratings, formula = fml, n.burn = 1000, n.iter = 100, m = 5)
# extract original (incomplete) data set
mitmlComplete(imp, print = 0)
# extract first imputed data set (returned as mitml.list)
mitmlComplete(imp, print = 1, force.list = TRUE)
# extract all imputed data sets at once
implist <- mitmlComplete(imp, print = "all")
## Not run:
# ... alternatives with same results
implist <- mitmlComplete(imp, print = 1:5)
implist <- mitmlComplete(imp, print = "list")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.