结合刻面标签R.

时间:2014-04-10 16:00:24

标签: r ggplot2 facet

假设您在创建构面时将两个因素组合在一起(在此实例中的清晰度和颜色......仅仅为了使示例图更小一些子集):

 ggplot(subset(diamonds, clarity=="SI1" | clarity == "VS2"),
           aes(x=price,y=carat)) + geom_point() + facet_grid(~ clarity + color)

这会让你: lots of redundant labels!

有没有办法更改标签,以便将冗余的SI1和VS2标签减少到一个?

0 个答案:

没有答案