I am wondering if in R there is a per-existing package that can colorate sets inside graph or a package that can generate a list of colors that are not close, Because I have a graph that have many clusters and I want to color but I don't want to colors to be close. I have found a nice answer here but I am wondering if there is a per-existing package for
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You may also want to check out the package RColorBrewer for other built in color palettes. However, you may run into issues if you need large numbers of colours. There is a nice post on CrossValidated which addresses the large n issue and offers a few nice solutions as well. Specifically, would it make sense to facet your plot based on some large groupings? Do you need to plot all of the items at once? ggplot2 makes it easy to facet based on a column in your data. I'm sure there are equivalent functions in base graphics and lattice, but I'm not as familiar with them. |
|||||||
|
|
See the functions rainbow, heat.colors, terrain.colors etc, described in the help pages (?rainbow). These are part of the grDevices package, which is installed by default. |
|||||||||
|