Learn R Programming

RSSthemes (version 1.0.0)

scale_colour_rss_c: Plotting with RSS palettes for colour ggplot2

Description

Plotting with RSS palettes for colour ggplot2

Usage

scale_colour_rss_c(palette, direction = 1, ...)

Value

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

Arguments

palette

name of palette. Run names(RSSPalettes) to view options.

direction

Sets order of colors. Default palette_choice is 1. If direction is -1, palette_choice color order is reversed

...

Other arguments passed on to scale_color_gradientn

Examples

Run this code
library(ggplot2)
ggplot(data = mtcars, aes(x = mpg, y = disp, color = wt)) +
  geom_point() +
  scale_colour_rss_c(palette = "signif_seq")

Run the code above in your browser using DataLab