我们可以使用order函数按多个列对数据框进行排序。
请看以下数据帧-
> df <- data.frame(x1 = factor(c("Hi", "Med", "Hi", "Low"), levels = c("Low", "Med", "Hi"), ordered = TRUE), x2 = c("A", "B", "D", "C"), x3 = c(4, 7, 5, 3), x4 = c(9, 5, 7, 4)) > df x1 x2 x3 x4 1 Hi A 4 9 2 Med B 7 5 3 Hi D 5 7 4 Low C 3 4
假设我们要按x4列的降序排序,然后按x1列的升序排序数据帧。
可以完成-
> df[with(df, order(-x4, x1)), ] x1 x2 x3 x4 1 Hi A 4 9 3 Hi D 5 7 2 Med B 7 5 4 Low C 3 4
我们也可以通过使用列索引来做到这一点-
> df[order(-df[,4], df[,1]), ] x1 x2 x3 x4 1 Hi A 4 9 3 Hi D 5 7 2 Med B 7 5 4 Low C 3 4