排序_R

## 排序 ##

> sort(), rank(), order()都可以对向量进行排序,只是返回的值不同

1. sort()

sort指按照升序或降序对向量中的值进行排序,返回的是向量中的值从小到大排列后的结果

sort(x, decreasing = FALSE, ...)

2. rank()

rank返回的是排序后向量中的值所对应排序的秩 (如:原向量中第一个位置数据的排位情况,原向量中第二个位置数据的排位情况.......)

rank(x, na.last = TRUE,
     ties.method = c("average", "first", "last", "random", "max", "min"))
  • x:a numeric, complex, character or logical vector.
  • na.last:处理缺失值, If TRUE, missing values in the data are put last; if FALSE, they are put first; if NA, they are removed; if "keep" they are kept with rank NA.
  • tie.method:当x中存在相同的值时,指定相应的方法确定相应索引处的结果。

3. order()

order/sort.list返回的是排序后的位置(如,最小的值在原向量中对应的位置......最大的值在原向量中对应的位置)

order(..., na.last = TRUE, decreasing = FALSE,
      method = c("auto", "shell", "radix"))

sort.list(x, partial = NULL, na.last = TRUE, decreasing = FALSE,
          method = c("auto", "shell", "quick", "radix"))
  • ...:a sequence of numeric, complex, character or logical vectors, all of the same length, or a classed R object.
  • x:向量
  • decreasing:降序;布尔逻辑值
  • na.last:处理缺失值,如果为TRUE,则数据中的缺失值最后放置; 如果为FALSE,则将它们放在第一位; 如果是NA,则将其删除

排序_R_第1张图片

有趣的发现:

有时候按照某列数据进行排序后,我们仍需要回到原来的顺序,就需要知道原始数据排序后的位置,有两种方法可以实现:

1、两次order,得到原始数据在排序后列表中的索引

2.rank()可满足要求,必须注意一定要加上参数ties.method = "first",否则回来的数据会出错,不再是之前的原始数据。

示例:

排序_R_第2张图片

 

你可能感兴趣的:(编程,R语言,排序,sort,order,rank)