scale_colour_pretty_d {PrettyCols}R Documentation

Plotting with PrettyCols palettes for colour ggplot2

Description

Plotting with PrettyCols palettes for colour ggplot2

Usage

scale_colour_pretty_d(name, direction = 1, legend_title = NULL, ...)

Arguments

name

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

Character string specifying legend title. Default NULL.

...

Other arguments passed on to discrete_scale

Value

A ggproto object defining a discrete colour scale for use with ggplot2.

Examples

library(ggplot2)
ggplot(data=iris, aes(x=Species, y=Petal.Length, colour=Species)) +
  geom_jitter() +
  scale_colour_pretty_d("Relax")

[Package PrettyCols version 1.0.1 Index]