Skip to contents

Plotting with emwCols palettes for fill color ggplot2

Usage

scale_fill_emw_div(name, direction = 1, legend_title = NULL, ...)

Arguments

name

Name of Palette. Run view_all_palettes(type = "div") to view options. Must be a diverging palette name.

direction

Sets order of colors. Default palette is 1. If direction is -1, palette color order is reversed

legend_title

Character string specifying legend title. Default NULL.

...

Other arguments passed on to scale_color_gradient2

Value

A ggproto object defining a continuous color scale for use with ggplot2.

Examples

library(ggplot2)
ggplot(data=mtcars, aes(x=mpg, y=disp, fill=wt)) +
  geom_point(pch = 21) +
  scale_fill_emw_div("Coral2Blues", midpoint = mean(mtcars$wt))