scale_color_dMod: Standard dMod color palette

View source: R/plots.R

scale_color_dModR Documentation

Standard dMod color palette

Description

Standard dMod color palette

Usage

scale_color_dMod(...)

Arguments

...

arguments goint to codescale_color_manual()

Examples

library(ggplot2)
times <- seq(0, 2*pi, 0.1)
values <- sin(times)
data <- data.frame(
   time = times, 
   value = c(values, 1.2*values, 1.4*values, 1.6*values), 
   group = rep(c("C1", "C2", "C3", "C4"), each = length(times))
)
qplot(time, value, data = data, color = group, geom = "line") + 
   theme_dMod() + scale_color_dMod()

dkaschek/dMod documentation built on April 23, 2024, 5:18 p.m.