File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ library("miceadds")
3333library("mitml")
3434library("Amelia")
3535library("jomo")
36- library("parallely ")
36+ library("parallelly ")
3737library("future")
3838library("furrr")
3939library("nlme")
@@ -497,6 +497,24 @@ fit_lmer_pooled
497497summary(fit_lmer_pooled)
498498```
499499
500+ # Model-Implied Predictions
501+
502+ ``` {r}
503+ mice::predict_mi(
504+ fit_lm,
505+ #newdata = # can include if want to make predictions based on another (i.e., "new") data object
506+ se.fit = TRUE,
507+ interval = c("prediction")
508+ )
509+
510+ mice::predict_mi(
511+ fit_lmer,
512+ #newdata = # can include if want to make predictions based on another (i.e., "new") data object
513+ se.fit = TRUE,
514+ interval = c("prediction")
515+ )
516+ ```
517+
500518# Resources
501519
502520https://stefvanbuuren.name/fimd (archived at https://perma.cc/46U2-QTM6 )
You can’t perform that action at this time.
0 commit comments