标签: r ggplot2 facet
假设您在创建构面时将两个因素组合在一起(在此实例中的清晰度和颜色......仅仅为了使示例图更小一些子集):
ggplot(subset(diamonds, clarity=="SI1" | clarity == "VS2"), aes(x=price,y=carat)) + geom_point() + facet_grid(~ clarity + color)
这会让你:
有没有办法更改标签,以便将冗余的SI1和VS2标签减少到一个?