Handling Missing Data with Imputations in R
Michal Oleszak
Machine Learning Engineer
The VIM package has a great set of tools for plotting missing data. In this lesson:
nhanes %>% aggr(combined = TRUE, numbers = TRUE)

nhanes %>% select(Gender, TotChol) %>% spineMiss()

nhanes %>% mosaicMiss(highlight = "TotChol", plotvars = c("Gender", "PhysActive"))

Handling Missing Data with Imputations in R