ds_plot_bar_grouped {descriptr} | R Documentation |
Creates grouped bar plots if the data has categorical variables.
ds_plot_bar_grouped(data, ..., print_plot = TRUE)
data |
A |
... |
Column(s) in |
print_plot |
logical; if |
mt <- dplyr::select(mtcarz, cyl, gear, am)
ds_plot_bar_grouped(mt)
ds_plot_bar_grouped(mtcarz, cyl, gear)