scale_fill_rss_c: Plotting with RSS palettes for fill with ggplot2

View source: R/scale_fill_rss_c.R

scale_fill_rss_cR Documentation

Plotting with RSS palettes for fill with ggplot2

Description

Plotting with RSS palettes for fill with ggplot2

Usage

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

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_fill_gradientn

Value

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

Examples

library(ggplot2)
ggplot(data = mtcars, aes(x = cyl, y = disp, fill = cyl)) +
  geom_col() +
  scale_fill_rss_c(palette = "signif_seq")

RSSthemes documentation built on Aug. 30, 2023, 1:09 a.m.