Learn R Programming

descriptr (version 0.5.2)

ds_plot_bar_stacked: Generate stacked bar plots

Description

Creates stacked bar plots if the data has categorical variables.

Usage

ds_plot_bar_stacked(data, ..., print_plot = TRUE)

Arguments

data

A data.frame or tibble.

...

Column(s) in data.

print_plot

logical; if TRUE, prints the plot else returns a plot object.

Examples

Run this code
# NOT RUN {
mt <- dplyr::select(mtcarz, cyl, gear, am)
ds_plot_bar_stacked(mt)
ds_plot_bar_stacked(mtcarz, cyl, gear)

# }

Run the code above in your browser using DataLab