当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 sort()用法及代码示例


sort()R语言中的函数用于按向量的值对向量进行排序。它以布尔值作为参数以升序或降序排序。

用法:
sort(x, decreasing, na.last)

参数:
x:要排序的向量
decreasing:按降序排序的布尔值
na.last:将 NA 放在最后的布尔值

范例1:


# R program to sort a vector
  
# Creating a vector
x <- c(7, 4, 3, 9, 1.2, -4, -5, -8, 6, NA)
  
# Calling sort() function
sort(x)

输出:

[1] -8.0 -5.0 -4.0  1.2  3.0  4.0  6.0  7.0  9.0

范例2:


# R program to sort a vector
  
# Creating a vector
x <- c(7, 4, 3, 9, 1.2, -4, -5, -8, 6, NA)
  
# Calling sort() function
# to print in decreasing order
sort(x, decreasing = TRUE)
  
# Calling sort() function
# to print NA at the end
sort(x, na.last = TRUE)

输出:

[1]  9.0  7.0  6.0  4.0  3.0  1.2 -4.0 -5.0 -8.0
[1] -8.0 -5.0 -4.0  1.2  3.0  4.0  6.0  7.0  9.0   NA

相关用法


注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Sorting of a Vector in R Programming – sort() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。