amices / ggmice

Visualize incomplete and imputed data with the R package `ggmice`

Home Page:http://amices.org/ggmice

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Set `ggmice()` default `fill` to mice colors

hanneoberman opened this issue · comments

library(ggmice)
library(mice)
#> Warning: package 'mice' was built under R version 4.3.1
#> 
#> Attaching package: 'mice'
#> The following objects are masked from 'package:ggmice':
#> 
#>     bwplot, densityplot, stripplot, xyplot
#> The following object is masked from 'package:stats':
#> 
#>     filter
#> The following objects are masked from 'package:base':
#> 
#>     cbind, rbind
library(ggplot2)
#> Warning: package 'ggplot2' was built under R version 4.3.2
ggmice(mice(nhanes, print = FALSE), aes(bmi)) + 
    geom_histogram() 
#> `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

Created on 2023-12-07 with reprex v2.0.2

This would not get the expected density plots, which would then require adding aes(fill = NULL) to geom_density()

Consider importing ggplot2 functions