将组级别添加到数据框

时间:2012-11-29 01:26:03

标签: r ggplot2

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

如何生成mtcars的组级别,以便按相反的顺序调整柱面数?

1 个答案:

答案 0 :(得分:2)

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

例如。

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


ggplot(mtcars) + geom_point() + facet_grid(~Group)