
MNB Fill Scale for ggplot2
scale_fill_mnb.Rd
This function creates a fill scale using the MNB color palette for ggplot2.
Examples
ggplot2::ggplot(iris, ggplot2::aes(Species, Sepal.Length, fill = Species)) +
ggplot2::geom_boxplot() +
scale_fill_mnb()
ggplot2::ggplot(iris) +
ggplot2::aes(Sepal.Length, Sepal.Width, fill = Species) +
ggplot2::geom_boxplot() +
scale_fill_mnb(values = c("red4", "blue", "yellow"))