有没有办法在ggplot中更改facet标签的字体大小?我谷歌了一下,发现那个问题还在Hadley的待办事项清单上。我想知道是否有关于这个问题的解决方法或任何新闻。
分享任何新闻的Thx ......
答案 0 :(得分:151)
这应该让你开始:
R> qplot(hwy, cty, data = mpg) +
facet_grid(. ~ manufacturer) +
theme(strip.text.x = element_text(size = 8, colour = "orange", angle = 90))
另请参阅此问题:How can I manipulate the strip text of facet plots in ggplot2?