# NOT RUN {
# Load 'starwars' data
data("starwars", package = "dplyr")
# categorical plot
x <- inspect_cat(starwars)
show_plot(x)
# correlations in numeric columns
x <- inspect_cor(starwars)
show_plot(x)
# feature imbalance bar plot
x <- inspect_imb(starwars)
show_plot(x)
# memory usage barplot
x <- inspect_mem(starwars)
show_plot(x)
# missingness barplot
x <- inspect_na(starwars)
show_plot(x)
# histograms for numeric columns
x <- inspect_num(starwars)
show_plot(x)
# barplot of column types
x <- inspect_types(starwars)
show_plot(x)
# }
Run the code above in your browser using DataLab