Skip to contents

This function creates a fill scale using the MNB color palette for ggplot2.

Usage

scale_fill_discrete_mnb_divergent()

Value

A ggplot2 fill scale object.

Examples

library(ggplot2)
ggplot2::ggplot(iris) + 
  ggplot2::aes(Sepal.Length, Sepal.Width, fill = Species) +
  ggplot2::geom_point(size = 3, shape = 21) + 
  scale_fill_discrete_mnb_divergent()