在 How to change the order of facet labels in ggplot (custom facet wrap labels)描述了如何添加组级别以供以后在排序的构面网格中使用。
如何生成mtcars
的组级别,以便按相反的顺序调整柱面数?
答案 0 :(得分:2)
这里的技巧是对唯一值进行排序,然后将级别设置为反向。
例如。
mtcars <- within(mtcars, Group <- factor(cyl, levels = rev(sort(unique(cyl)))))
ggplot(mtcars) + geom_point() + facet_grid(~Group)