Skip to contents

Custom wrapper for flipped version of geom_bar

Usage

geom_bar_flipped_RR()

Examples

library(ggplot2)
mtcars |>
ggplot(aes(x = factor(cyl),
fill = factor(am))) +
theme_RR() +
geom_bar_flipped_RR() +
labs(title = "Number of Cars per Number of Cylinders",
x = "Number of Cylinders",
y = "Count") +
scale_fill_RR()