Skip to contents

Applies Seer brand colors to ggplot2 fill aesthetics. This is a wrapper around scale_colour_seer with aesthetics = "fill".

Usage

scale_fill_seer(...)

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()
}