tags:

views:

85

answers:

1

Dear all,

is there a way to change to font size of facet labels in ggplot? I google a bit and found that that issue was yet on Hadley's to do list. I wonder if there's a workaround or any news on this issue.

Thx for sharing any news…

+1  A: 

This should get you started:

R> qplot(hwy, cty, data = mpg) + 
+       facet_grid(. ~ manufacturer) + 
+       opts(strip.text.x = theme_text(size = 8, colour = "red", angle = 90))

See also this SO question: How can I manipulate the strip text of facet plots in ggplot2?

rcs