Discrete colour scale using fundr palettes
See also
Other colors:
fundr_colors(),
fundr_pal(),
fundr_palette(),
scale_fill_fundr()
Examples
library(ggplot2)
# Scatter plot with fundr colors
ggplot(mtcars, aes(wt, mpg, colour = factor(cyl))) +
geom_point(size = 3) +
scale_colour_fundr("secondary")
# US spelling also works
ggplot(mtcars, aes(wt, mpg, color = factor(cyl))) +
geom_point(size = 3) +
scale_color_fundr("tertiary")
