What function can I use to emulate ggplot2's default color palette for a desired number of colors. For example, an input of 3 would produce a character vector of HEX colors with these colors:

Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
It is just equally spaced hues around the color wheel, starting from 15:
For example:
|
|||
|
From page 106 of the ggplot2 book by Hadley Wickham: "The default colour scheme, scale_colour_hue picks evenly spaced hues around the hcl colour wheel." With a bit of reverse engineering you can construct this function:
Demonstrating this in barplot:
|
|||||
|


display.brewer.all()at my desk. I think I like Set1 the best for factors. – John Colby Nov 20 '11 at 17:21