powered by
Plotting with PrettyCols palettes for colour ggplot2
scale_fill_pretty_c(palette, direction = 1, legend_title = NULL, ...)
A ggproto object defining a continuous fill scale for use with ggplot2.
Name of Palette. Run names(PrettyColsPalettes) to view options.
names(PrettyColsPalettes)
Sets order of colors. Default palette is 1. If direction is -1, palette color order is reversed
Deprecated in favour of name.
name
Other arguments passed on to scale_fill_gradientn
scale_fill_gradientn
library(ggplot2) ggplot(data = mtcars, aes(x = mpg, y = disp, fill = wt)) + geom_point(pch = 21) + scale_fill_pretty_c("Greens")
Run the code above in your browser using DataLab