When drawing plots in R I need some "projector-friendly" colours for <10 qualitative variables.
Unfortunately, I have no access to projector to test the colours I have at the moment (ggplot -- defaults), but maybe someone can tell from experience?
When drawing plots in R I need some "projector-friendly" colours for <10 qualitative variables.
Unfortunately, I have no access to projector to test the colours I have at the moment (ggplot -- defaults), but maybe someone can tell from experience?
I have red-green color blindness, so I am deliberate in my choice of colors with ggplot2
. I would suggest a gradient for your colors (e.g., blue-to-white or blue-to-black or grey-to-black). If you're lucky, your colors will be on some sort natural gradient (e.g., low values to high, even if your data is just on an ordinal scale).
Some other things to consider:
skyblue
and navyblue
make a nice pair)?colors()
output in R
or the ColorBrewer
website and R
package as noted by @zx8754 You might also want to check out presentation books such as Tufte, Reynolds or White. When I get stuck, I browse their webpages and books.
Also, if you include example figures, we could provide feedback on SO.