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

By default, on a faceted ggplot (facet_grid), the y-axis facet labels are on the right and the y-axis breaks and labels are on the left.

Is it possible to switch them?

share|improve this question
I think it's not possible, but I'll be happy to be mistaken. – Luciano Selzer Jul 8 '11 at 14:17
2  
To do this you'll have to do some heavy lifting yourself using grid graphics. AFAIK, this is not possible using ggplot at the moment. – Andrie Jul 8 '11 at 14:37
I was afraid that was going to be the answer. Thanks! – Ryan Jul 8 '11 at 16:01

1 Answer

up vote 5 down vote accepted

Koshke wrote this a while back, half as a joke on the ggplot2 mailing list: http://groups.google.com/group/ggplot2/browse_thread/thread/5c4658aceea9daf1

d <- data.frame(expand.grid(a=1:2,b=1:2,c=1:2),x=rnorm(8), y=rnorm(8)) 
p <- ggplot(d, aes(x, y)) + facet_grid(a~b) + geom_point() + 
coord_trans(x="reverse", y="reverse") + 
opts(strip.text.x=theme_text(angle=180), 
     strip.text.y=theme_text(angle=90), 
     axis.text.x=theme_text(angle=180), 
     axis.text.y=theme_text(angle=180), 
     axis.title.x=theme_text(angle=180), 
     axis.title.y=theme_text(angle=180)) 
print(p, vp=viewport(angle=180)) 

You would obviously have to mirror it or "flip vertically" for the desired effect, but I'm not sure how or if you can do that with modern image software.

There's also ... + coord_flip() which puts the y-axis at bottom and x-axis at left.

share|improve this answer
2  
+1 for your memory. Yes, this is a kind of joke. At this time ggplot cannot do that work. – kohske Jul 8 '11 at 15:39
Bummer. Thanks, I'll have to decide if it's worth it to save as a pdf and switch the sides manually in a vector graphics program. – Ryan Jul 8 '11 at 15:59

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.