Is there a function where I can reduce the line of repeated plot codes for different data sets?
plot_missing(prospects6K,
group = c("Excellent" = 0.01, "Good" = 0.3, "Ok" = 0.6, "Bad" = 0.9),
missing_only = T,
title= "Missing User Data",
ggtheme = theme_minimal(),
theme_config = list(legend.position = c("bottom"))
)
plot_missing(testing5K,
group = c("Excellent" = 0.01, "Good" = 0.3, "Ok" = 0.6, "Bad" = 0.9),
missing_only = T,
title= "Missing User Data",
ggtheme = theme_minimal(),
theme_config = list(legend.position = c("bottom"))
)
plot_missing(training15K,
group = c("Excellent" = 0.01, "Good" = 0.3, "Ok" = 0.6, "Bad" = 0.9),
missing_only = T,
title= "Missing User Data",
ggtheme = theme_minimal(),
theme_config = list(legend.position = c("bottom"))
)