scale_colour_pretty_c: Plotting with PrettyCols palettes for colour ggplot2

scale_colour_pretty_cR Documentation

Plotting with PrettyCols palettes for colour ggplot2

Description

Plotting with PrettyCols palettes for colour ggplot2

Usage

scale_colour_pretty_c(palette, direction = 1, legend_title = NULL, ...)

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

[Deprecated] Deprecated in favour of name.

...

Other arguments passed on to scale_colour_gradientn

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_colour_pretty_c("Greens")

nrennie/PrettyCols documentation built on June 13, 2025, 3:06 a.m.