Learn R Programming

khroma (version 1.14.0)

scale_picker: Color Scale Builder

Description

Builds a color scale for ggplot2 or ggraph.

Usage

scale_colour_picker(..., palette = "YlOrBr")

scale_color_picker(..., palette = "YlOrBr")

scale_fill_picker(..., palette = "YlOrBr")

scale_edge_colour_picker(..., palette = "YlOrBr")

scale_edge_color_picker(..., palette = "YlOrBr")

scale_edge_fill_picker(..., palette = "YlOrBr")

Value

A discrete or continuous scale.

Arguments

...

Extra parameters to be passed to the color scale function.

palette

A character string giving the name of the color scheme to be used (see info()).

Author

N. Frerebeau

Examples

Run this code
library(ggplot2)

ggplot2::ggplot(mpg, ggplot2::aes(displ, hwy, colour = class)) +
  ggplot2::geom_point() +
  scale_colour_picker(palette = "okabeito")

Run the code above in your browser using DataLab