Skip to contents

Box-and-whisker plot of observed and imputed data

Usage

bwplot(...)

Arguments

...

Any arguments passed to the function.

Value

The output of mice::bwplot and a message about the ggmice equivalent.

Examples

imp <- mice::mice(mice::nhanes, maxit = 1, printFlag = FALSE)
bwplot(imp)
#> Hint: Did you know, an equivalent figure can be created with `ggmice()`?
#> For example, to plot a variable named 'my_vrb' from a mids object called
#> 'my_mids', run:
#>   ggmice(my_mids, ggplot2::aes(x = .imp, y = my_vrb)) +
#>   ggplot2::geom_boxplot()
#>  See amices.org/ggmice for more info.
#> This message is displayed once per session.