This will emulate ggplot2's hues, which are equally spaced hues around the color wheel, starting from 15.
Arguments
- n
The Numeric; number of hues to generate.
- start
Numeric; the place on the color wheel to start. ggplot2 default is 15.
Examples
n <- 10
gghues(3)
#> [1] "#F8766D" "#00BA38" "#619CFF"
barplot(rep(1,n), col=gghues(n), names=gghues(n))
barplot(rep(1,n), col=gghues(n, start=15+180), names=gghues(n, start=15+180))