ameliabind | R Documentation |
Combines multiple runs of amelia
with the same
arguments and data into one amelia
object.
ameliabind(...)
... |
one or more objects of class |
ameliabind
will combine multiple runs of amelia
into one
object so that you can utilize diagnostics and modelling on all the
imputations together. This function is useful for combining multiple
runs of amelia
run on parallel machines.
Note that ameliabind
only checks that they arguments and the
missingness matrix are identical. Thus, it could be fooled by two
datasets that are identical up to a transformation of one variable.
An object of class amelia
.
amelia
data(africa)
a1.out <- amelia(x = africa, cs = "country", ts = "year", logs = "gdp_pc")
a2.out <- amelia(x = africa, cs = "country", ts = "year", logs = "gdp_pc")
all.out <- ameliabind(a1.out, a2.out)
summary(all.out)
plot(all.out)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.