library(dplyr)
# Credit Card Default Data
head(ISLR::Default)
# Generate data for the example
sb <- ISLR::Default %>%
split_by(default)
sb %>%
compare_target_numeric()
sb %>%
compare_target_numeric(balance)
Run the code above in your browser using DataLab