ds_plot_box_group {descriptr} | R Documentation |
Creates box plots if the data has both categorical & continuous variables.
ds_plot_box_group(data, ..., print_plot = TRUE)
data |
A |
... |
Column(s) in |
print_plot |
logical; if |
mt <- dplyr::select(mtcarz, cyl, disp, mpg)
ds_plot_box_group(mt)
ds_plot_box_group(mtcarz, cyl, gear, mpg)