Hello all,
I'm in a similar situation and need to clarify something for my own education. Based on Michael's post, I'm guessing the solution is to estimate a brms model for each imputed data set, merge the models together, and then proceed with any other summary, predicted margins, etc?
For example:
a <- brms(...data = ImpData$imp1, seed = 903)
b <- brms(...data = ImpData$imp2, seed = 214)
c <- brms(...data = ImpData$imp3, seed = 972)
FullMods <- sflist2stanfit(c(a, b, c))
summary(FullMods)
Is this correct? Thank you for your help.
ZAP