man/examples/theme_bar_dft.R

## Simple bar chart with a flipped axis and legend at the top

library(ggplot2)

df <- mpg[mpg$class %in% c("subcompact", "compact", "midsize", "suv"),]

ggplot(df, aes(manufacturer)) +
  geom_bar(aes(fill=class), width = 0.5) +
  theme_bar_dft(flip = TRUE, legend_position = "top")
department-for-transport/dftplotr documentation built on April 3, 2024, 3:55 p.m.