Learn R Programming

RSSthemes (version 1.0.0)

scale_fill_rss_d: Plotting with RSS palettes for fill colour ggplot2

Description

Plotting with RSS palettes for fill colour ggplot2

Usage

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

Value

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

Arguments

palette

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

direction

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

...

Other arguments passed on to discrete_scale

Examples

Run this code
library(ggplot2)
ggplot(data = mtcars, aes(x = cyl, y = disp, fill = factor(cyl))) +
  geom_col() +
  scale_fill_rss_d(palette = "signif_qual")

Run the code above in your browser using DataLab