Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As ggplot2 produces nice colored graphs but sometimes it is required to have black and white graphs with pattern fills. I wonder how to do this in ggplot2, say for this code:

ggplot(diamonds, aes(cut, fill=cut)) + geom_bar()

Edit

Is there any function in R to do pattern fills for graphs?

share|improve this question
3  
A quick Google search reveals this and quite a few other results that note that grid doesn't support patterned fills of polygons. – joran Sep 30 '11 at 0:30
Any other R function having pattern fills capabilities? – MYaseen208 Sep 30 '11 at 2:16
1  
Not off the top of my head. If you're looking into this because the graph will be printed in black and white, consider simply using a greyscale color palette. – joran Sep 30 '11 at 2:54
a proof-of-concept for grid rectangles is in gridExtra, example(patternGrob). Not that I'd recommend it though. – baptiste Sep 30 '11 at 22:04
1  
the gridSVG package seems to be fairly close to providing a solution using grid.garnish() and fills defined as in this page w3.org/TR/SVG/pservers.html – baptiste Sep 30 '11 at 22:38

1 Answer

have a look at the 6th plot of example(barplot).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.