Applies Seer brand colors to ggplot2 fill aesthetics.
This is a wrapper around scale_colour_seer with aesthetics = "fill".
Arguments
- ...
Additional arguments passed to
scale_colour_seer().
Examples
if (requireNamespace("ggplot2", quietly = TRUE)) {
p <- ggplot2::ggplot(ggplot2::mpg, ggplot2::aes(class, fill = class)) +
ggplot2::geom_bar()
p + scale_fill_seer()
}
