Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

ggplot2-scales-discrete

Discrete scales to use for ggplot2


Description

These functions provide the option to use the discrete and dynamic palettes along with the ggplot2 package. It goes without saying that it requires ggplot2 to work.

Usage

scale_colour_paletteer_d(palette, direction = 1, dynamic = FALSE, ...)

scale_color_paletteer_d(palette, direction = 1, dynamic = FALSE, ...)

scale_fill_paletteer_d(palette, direction = 1, dynamic = FALSE, ...)

Arguments

palette

Name of palette as a string. Must be on the form packagename::palettename.

direction

Either 1 or -1. If -1 the palette will be reversed.

dynamic

toggles between the discrete palettes and the dynamic palettes. Defaults to FALSE which indicates discrete palettes.

...

additional arguments to pass to discrete_scale

Details

Available package/palette combinations are available in the data.frame palettes_d_names and palettes_dynamic_names.

Examples

if (require('ggplot2')) {

  ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, colour = Species)) +
    geom_point() +
    scale_colour_paletteer_d("nord::frost")
}

paletteer

Comprehensive Collection of Color Palettes

v1.3.0
GPL-3
Authors
See AUTHORS file.
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.