Learn R Programming

MSUthemes (version 1.0.0)

scale_fill_bigten_d: Plotting with Big Ten palettes for fill ggplot2

Description

Plotting with Big Ten palettes for fill ggplot2

Usage

scale_fill_bigten_d(palette = "primary", direction = 1, ...)

Value

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

Arguments

palette

Type of palette: "primary" or "secondary"

direction

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

...

Other arguments passed on to discrete_scale

Examples

Run this code
library(ggplot2)
ggplot(data = mtcars, aes(x = mpg, y = disp, fill = factor(cyl))) +
  geom_point(shape = 21) +
  scale_fill_bigten_d(palette = "primary")

Run the code above in your browser using DataLab