ggplot的facet_grid的轴标签

时间:2016-06-13 09:05:55

标签: r ggplot2

有人可以确定在使用facet_grid时如何为ggplot放置顶部和右轴标签?

请考虑以下代码,该代码是下面给出的结果图。我想为顶轴和右轴放置轴标签“Days”和“Gender”。另一种方法是使用labeller或'levels`,但它会更改顶部标签而不是轴标签。

library(reshape2)
ggplot(tips, aes(total_bill, tip)) + 
  facet_grid(sex ~ day) + 
  geom_point() + 
  xlab("Total Bill") + 
  ylab("Tip")

enter image description here

0 个答案:

没有答案