write.mitml | R Documentation |
mitml
objects to fileSaves objects of class mitml
in R binary formats (similar to ?save
).
write.mitml(x, filename, drop = FALSE)
x |
An object of class |
filename |
Name of the destination file, specified with file extension (e.g., |
drop |
Logical flag indicating if the parameters of the imputation model should be dropped to reduce file size. Default is |
None (invisible NULL
).
Simon Grund
panImpute
, jomoImpute
, read.mitml
## Not run:
data(studentratings)
fml <- ReadDis + SES ~ ReadAchiev + (1|ID)
imp <- panImpute(studentratings, formula = fml, n.burn = 1000, n.iter = 100, m = 5)
# write full 'mitml' object (default)
write.mitml(imp, filename = "imputation.Rdata")
# drop parameters of the imputation model
write.mitml(imp, filename = "imputation.Rdata", drop = TRUE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.