Skip to contents

beezdemand Fill Scale (Discrete)

Usage

scale_fill_beezdemand(...)

Arguments

...

Additional arguments passed to ggplot2::scale_fill_manual.

Value

A ggplot2 discrete fill scale.

Examples

# \donttest{
library(ggplot2)
ggplot(iris, aes(Species, Sepal.Length, fill = Species)) +
  geom_boxplot() +
  scale_fill_beezdemand()

# }