tags:

views:

95

answers:

3

I've started to produce the charts for a paper. For some of them which are bar charts I've used the "Pastel1" palette (as recommended in the book on ggplot2, pastel colours are better than saturated ones for fill areas, such as bars).

The problem with Pastel1 at least is that when printed on a B&W laser printer, the colours are indistinguishable. I don't know if the readers will view the paper on screen or will print it on B&W, so I'm looking for either of the following:

  • how to add hash lines to a palette such as Pastel1 (hopefully the hash lines are also subtle)
  • a colour palette easy on the eyes that also produces distinct grey areas for B&W for, say, up to 3-4 different colours.

Granted, I could find the latter by experimenting and using toner, but perhaps this has already been solved, I suppose it's a common problem. And yes, I did google for this, but didn't find anything pertinent.

Thank you.

+3  A: 

Use this to select another color combination (gray scale option included)

gd047
+1  A: 

Use http://colorbrewer2.org/ and only show colour schemes that are printer friendly. Also see scale_fill_grey.

Currently it's not possible to used hash lines due to a limitation in the underlying grid drawing package.

hadley
+2  A: 

There is the col2grey function in the TeachingDemos package that will convert a set of colors to an approximation of the grey color that will result from printing. You can use this to try different pallettes without wasting toner/paper.

Greg Snow