在ggplot facet_wrap中共享标签以避免重复

时间:2018-10-17 09:46:55

标签: r ggplot2 facet-wrap

此代码

library(ggplot2)

ggplot(mtcars, aes(mpg, hp)) +
  facet_wrap(am ~ cyl, ncol = 6) +
  geom_point()

产生下图

enter image description here

变量“ am”具有两个值(0和1),每个值重复3次。我想知道是否可以包含一个以0为中心的条带(与1相同)。

0 个答案:

没有答案