powered by
Plotting with PrettyCols palettes for colour ggplot2
scale_colour_pretty_div(palette, direction = 1, legend_title = NULL, ...)
A ggproto object defining a continuous colour scale for use with ggplot2.
Name of Palette. Run view_all_palettes(type = "div") to view options. Must be a diverging palette name.
view_all_palettes(type = "div")
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_colour_gradient2
scale_colour_gradient2
library(ggplot2) ggplot(data = mtcars, aes(x = mpg, y = disp, colour = wt)) + geom_point() + scale_colour_pretty_div("PurpleYellows", midpoint = mean(mtcars$wt))
Run the code above in your browser using DataLab