R/ds-plots.R
ds_plot_box_group.Rd
Creates box plots if the data has both categorical & continuous variables.
ds_plot_box_group(data, ..., print_plot = TRUE)
A data.frame or tibble.
data.frame
tibble
Column(s) in data.
data
logical; if TRUE, prints the plot else returns a plot object.
TRUE
mt <- dplyr::select(mtcarz, cyl, disp, mpg) ds_plot_box_group(mt) ds_plot_box_group(mtcarz, cyl, gear, mpg)