Fill palette of Dubois colors
Arguments
- palette
Choice of palette name or number
- direction
Direction of color choices
- order
Order of color choices
- ...
Additional parameters passed internally
Examples
library(dplyr)
#>
#> Attaching package: ‘dplyr’
#> The following objects are masked from ‘package:stats’:
#>
#> filter, lag
#> The following objects are masked from ‘package:base’:
#>
#> intersect, setdiff, setequal, union
library(ggplot2)
mtcars |>
mutate(cyl = factor(cyl)) |>
ggplot(aes(mpg, cyl, fill = cyl)) +
geom_boxplot(key_glyph = "dubois") +
theme_mini(conditional = TRUE) +
scale_fill_dubois()