ggmice equivalent of mice
plotsHow to re-create the output of the plotting functions from
mice with ggmice. In alphabetical order of the
mice functions.
First load the ggmice, mice, and
ggplot2 packages, some incomplete data and a
mids object into your workspace.
bwplotBox-and-whisker plot of observed and imputed data.
# ggmice equivalent
ggmice(imp, aes(x = .imp, y = hgt)) +
geom_boxplot() +
labs(x = "Imputation number")# extended reproduction with ggmice
ggmice(imp, aes(x = .imp, y = hgt)) +
stat_boxplot(geom = "errorbar", linetype = "dashed") +
geom_boxplot(outlier.colour = "grey", outlier.shape = 1) +
labs(x = "Imputation number") +
theme(legend.position = "none")densityplotDensity plot of observed and imputed data.
# extended reproduction with ggmice
ggmice(imp, aes(x = hgt, group = .imp, linewidth = .where)) +
geom_density() +
scale_linewidth_manual(
values = c("observed" = 1, "imputed" = 0.5),
guide = "none"
) +
theme(legend.position = "none")fluxplotInflux and outflux plot of multivariate missing data patterns.
md.patternMissing data pattern plot.
# extended reproduction with ggmice
plot_pattern(dat, square = TRUE) +
theme(
legend.position = "none",
axis.title = element_blank(),
axis.title.x.top = element_blank(),
axis.title.y.right = element_blank()
)plot.midsPlot the trace lines of the MICE algorithm.
stripplotStripplot of observed and imputed data.
# ggmice equivalent
ggmice(imp, aes(x = .imp, y = hgt)) +
geom_jitter(width = 0.25) +
labs(x = "Imputation number")# extended reproduction with ggmice (not recommended)
ggmice(imp, aes(x = .imp, y = hgt)) +
geom_jitter(
shape = 1,
width = 0.1,
na.rm = TRUE,
data = data.frame(
hgt = dat$hgt,
.imp = factor(rep(1:imp$m, each = nrow(dat))),
.where = "observed"
)
) +
geom_jitter(shape = 1, width = 0.1) +
labs(x = "Imputation number") +
theme(legend.position = "none")xyplotScatterplot of observed and imputed data.
# extended reproduction with ggmice
ggmice(imp, aes(age, hgt)) +
geom_point(size = 2, shape = 1) +
theme(legend.position = "none")To make ggmice visualizations interactive, the
plotly package can be used. For example, an interactive
influx and outflux plot may be more legible than a static one.
You may want to create a plot visualizing the imputations of multiple
variables as one object. To visualize multiple variables at once, the
variable names are saved in a vector. This vector is used together with
the functional programming package purrr and visualization
package patchwork to map() over the variables
and subsequently wrap_plots to create a single figure.
# load packages
library(purrr)
library(patchwork)
# create vector with variable names
vrb <- names(dat)Display box-and-whisker plots for all variables.
# ggmice equivalent
p <- map(vrb, ~ {
ggmice(imp, aes(x = .imp, y = .data[[.x]])) +
geom_boxplot() +
scale_x_discrete(drop = FALSE) +
labs(x = "Imputation number")
})
wrap_plots(p, guides = "collect") &
theme(legend.position = "bottom")Display density plots for all variables.
# ggmice equivalent
p <- map(vrb, ~ {
ggmice(imp, aes(x = .data[[.x]], group = .imp)) +
geom_density()
})
wrap_plots(p, guides = "collect") &
theme(legend.position = "bottom")Display strip plots for all variables.
# ggmice equivalent
p <- map(vrb, ~ {
ggmice(imp, aes(x = .imp, y = .data[[.x]])) +
geom_jitter() +
labs(x = "Imputation number")
})
wrap_plots(p, guides = "collect") &
theme(legend.position = "bottom")This is the end of the vignette. This document was generated using:
sessionInfo()
#> R version 4.6.0 (2026-04-24)
#> Platform: x86_64-pc-linux-gnu
#> Running under: Ubuntu 24.04.4 LTS
#>
#> Matrix products: default
#> BLAS: /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3
#> LAPACK: /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblasp-r0.3.26.so; LAPACK version 3.12.0
#>
#> locale:
#> [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
#> [3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8
#> [5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
#> [7] LC_PAPER=en_US.UTF-8 LC_NAME=C
#> [9] LC_ADDRESS=C LC_TELEPHONE=C
#> [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
#>
#> time zone: Etc/UTC
#> tzcode source: system (glibc)
#>
#> attached base packages:
#> [1] stats graphics grDevices utils datasets methods base
#>
#> other attached packages:
#> [1] patchwork_1.3.2 purrr_1.2.2 plotly_4.12.0 ggmice_0.1.1.9000
#> [5] ggplot2_4.0.3 mice_3.19.8 rmarkdown_2.31
#>
#> loaded via a namespace (and not attached):
#> [1] gtable_0.3.6 shape_1.4.6.1 xfun_0.57 bslib_0.11.0
#> [5] htmlwidgets_1.6.4 lattice_0.22-9 crosstalk_1.2.2 vctrs_0.7.3
#> [9] tools_4.6.0 Rdpack_2.6.6 generics_0.1.4 tibble_3.3.1
#> [13] pan_1.9 pkgconfig_2.0.3 jomo_2.7-6 Matrix_1.7-5
#> [17] data.table_1.18.4 RColorBrewer_1.1-3 S7_0.2.2 lifecycle_1.0.5
#> [21] compiler_4.6.0 farver_2.1.2 stringr_1.6.0 codetools_0.2-20
#> [25] htmltools_0.5.9 sys_3.4.3 buildtools_1.0.0 sass_0.4.10
#> [29] lazyeval_0.2.3 yaml_2.3.12 glmnet_5.0 pillar_1.11.1
#> [33] nloptr_2.2.1 jquerylib_0.1.4 tidyr_1.3.2 MASS_7.3-65
#> [37] cachem_1.1.0 reformulas_0.4.4 iterators_1.0.14 rpart_4.1.27
#> [41] boot_1.3-32 foreach_1.5.2 mitml_0.4-5 nlme_3.1-169
#> [45] tidyselect_1.2.1 digest_0.6.39 stringi_1.8.7 dplyr_1.2.1
#> [49] maketools_1.3.2 labeling_0.4.3 splines_4.6.0 fastmap_1.2.0
#> [53] grid_4.6.0 cli_3.6.6 magrittr_2.0.5 survival_3.8-6
#> [57] broom_1.0.13 withr_3.0.2 scales_1.4.0 backports_1.5.1
#> [61] httr_1.4.8 otel_0.2.0 nnet_7.3-20 lme4_2.0-1
#> [65] evaluate_1.0.5 knitr_1.51 rbibutils_2.4.1 viridisLite_0.4.3
#> [69] rlang_1.2.0 Rcpp_1.1.1-1.1 glue_1.8.1 minqa_1.2.8
#> [73] jsonlite_2.0.0 R6_2.6.1