scale_color_pretty_div {PrettyCols} | R Documentation |
Plotting with PrettyCols palettes for colour ggplot2
Description
Plotting with PrettyCols palettes for colour ggplot2
Usage
scale_color_pretty_div(palette, direction = 1, legend_title = NULL, ...)
Arguments
palette |
Name of Palette. Run |
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 |
Value
A ggproto object defining a continuous colour scale for use with ggplot2.
Examples
library(ggplot2)
ggplot(data = mtcars, aes(x = mpg, y = disp, colour = wt)) +
geom_point() +
scale_color_pretty_div("PurpleYellows", midpoint = mean(mtcars$wt))
[Package PrettyCols version 1.1.0 Index]