-1

How to change the order of facet labels in ggplot (custom facet wrap labels)中描述了如何添加组级别以供以后在排序的 facet 网格中使用。

我如何生成组级别以mtcars使气缸数以相反的顺序转动?

4

1 回答 1

2

这里的技巧是对唯一值进行排序,然后将级别设置为相反。

例如。

mtcars <- within(mtcars, Group <- factor(cyl, levels = rev(sort(unique(cyl)))))


ggplot(mtcars) + geom_point() + facet_grid(~Group)
于 2012-11-29T01:54:33.317 回答