Plotting with emwCols palettes for color ggplot2
scale_fill_emw_c.RdPlotting with emwCols palettes for color ggplot2
Arguments
- name
Name of Palette. Run
names(emwColsPalettes)to view options.- 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_fill_gradientn
Examples
library(ggplot2)
ggplot(data=mtcars, aes(x=mpg, y=disp, fill=wt)) +
geom_point(pch = 21) +
scale_fill_emw_c("Corals")