Plotting with PrettyCols palettes for colour ggplot2
Source:R/scale_fill_pretty_c.R
scale_fill_pretty_c.Rd
Plotting with PrettyCols palettes for colour ggplot2
Arguments
- palette
Name of Palette. Run
names(PrettyColsPalettes)
to view options.- direction
Sets order of colors. Default palette is 1. If direction is -1, palette color order is reversed
- legend_title
- ...
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_pretty_c("Greens")