Function for using MexBrewer colors schemes in ggplot2. Use scale_color_mex_d and scale_fill_mex_d
for discrete scales and scale_color_mex_c and scale_fill_mex_c for continuous scales.
Arguments
- palette_name
Name of Palette. Choices are:
Alacena,Atentado,Aurora,Casita1,Casita2,Casita3,Concha,Frida,Huida,Maiz,Naturaleza,Ofrenda,Revolucion,Ronda,Taurus1,Taurus2,Tierra,Vendedora.- direction
Sets order of colors. Default palette is 1. If direction is -1, palette color order is reversed
- override.order
Colors are picked from palette to maximize readability and aesthetics. This means that colors are not always selected in sequential order from the full palette. If override.order is set to TRUE, colors are selected in sequential order from the full palette instead. Default is FALSE.
- ...
Other arguments passed on to
discrete_scale
Examples
library(ggplot2)
ggplot(data=iris, aes(x=Species, y=Sepal.Length, fill=Species)) +
geom_violin() +
scale_fill_mex_d("Aurora")