compare_imp | R Documentation |
ggplot2 visualization to support which imputation method to choose
compare_imp(df, origin, target)
df |
data.frame with origin variable and the new one with imputations |
origin |
character value - the name of origin variable with values before any imputations |
target |
character vector - names of variables with applied imputations |
ggplot2 object
library(miceFast) library(ggplot2) data(air_miss) air_miss$Ozone_imp <- fill_NA( x = air_miss, model = "lm_bayes", posit_y = 1, posit_x = c(4, 6), logreg = TRUE ) air_miss$Ozone_imp2 <- fill_NA_N( x = air_miss, model = "pmm", posit_y = 1, posit_x = c(4, 6), logreg = TRUE ) compare_imp(air_miss, origin = "Ozone", "Ozone_imp") compare_imp(air_miss, origin = "Ozone", c("Ozone_imp", "Ozone_imp2"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.