當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R語言 order()用法及代碼示例


order()R 語言中的函數用於按對象的索引值對對象進行排序。這些對象可以是向量、矩陣或 DataFrame 。此函數接受布爾值作為參數以升序或降序排序。

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

參數:
x:要排序的向量
decreasing:按降序排序的布爾值
na.last:將 NA 放在最後的布爾值

範例1:


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

輸出:

[1]  8  7  6  5  3  2  9  1  4 10

範例2:


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

輸出:

 [1]  4  1  9  2  3  5  6  7  8 10
 [1]  8  7  6  5  3  2  9  1  4 10

相關用法


注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Sort elements of an Object by its Index Values in R Programming – order() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。