I'm going to compare my model with the EMB method in Amelia package. I read the article, but it does not mentioned specifically to call the EMB method from Amelia.
I got two questions:
- how to call EMB from Amelia?
- Does it correct if i want to impute the missing data in Amelia,
The code is this:
Completed_data<-amelia(XNanData,m=3,p2s=0)
dataI=Completed_data$imputations[[3]]
So,is the dataI
considered as the imputed data in Amelia II?
From my understanding, Multiple imputation consist of three steps:Imputation, Analysis and Pool.
Is dataI
from above considered the pooled result or i need to call another function in Amelia for the pooled result? I'm still new in MI.