Plotting with MSU palettes for colour ggplot2
Arguments
- palette
name of palette. Run
names(MSUpalettes)
to view options.- direction
Sets order of colors. Default palette_choice is 1. If direction is -1, palette_choice color order is reversed
- ...
Other arguments passed on to
scale_color_gradientn
Examples
library(ggplot2)
ggplot(data = mtcars, aes(x = mpg, y = disp, color = wt)) +
geom_point() +
scale_colour_msu_c(palette = "msu_seq")