Does R
have color palettes?
In other words, I am looking for an array of 6 or so color names that go well together in a graph or plot; maybe there are some predefined schemes like that?
Does R
have color palettes?
In other words, I am looking for an array of 6 or so color names that go well together in a graph or plot; maybe there are some predefined schemes like that?
Look at the RColorBrewer package. The colors are not named, but I think that they are close to what you are looking for.
RColorBrewer, as mentioned by deinst, is very useful -- even though it was designed for maps rather than line charts.
A number of other packages offer help with palettes:
colorpanel()
, rich.colors()
, ...as can be seen from a quick query on 'palette' at rseek.org.
The easiest way to generate a palette is using generic functions from the basic grDevices package:
rainbow()
topo.colors()
terrain.colors()
heat.colors()
These are useful if the desired number of colors doesn't exceed 7-8. The only necessary argument is the number of colors in palette.
There is also gray()
function which can be used to generate various schades of gray.
No one mention this but look at palette
function (?palette
) which define default pallet.
palette()[1:6]
gives you first six default colours.