is.unsorted()
R語言中的函數用於檢查對象是否已排序。如果對象已排序,則返回 False,否則返回 True。
用法: is.unsorted(x)
參數:
x:Object
範例1:
# R Program to check if
# an object is sorted
# Creating a vector
x <- c(1:9)
# Creating a matrix
mat <- matrix(c(5, 3, 4, 2), 2, 2)
# Calling is.unsorted() Function
is.unsorted(x)
is.unsorted(mat)
輸出:
[1] FALSE [1] TRUE
此處,向量的輸出為 FALSE,因為它已排序而矩陣未排序,因此函數對矩陣返回 TRUE。
範例2:
# R Program to check if
# an object is sorted
# Creating a vector
x <- c(2, 4, 2, 5, 7, 1, 3, 8, 1)
x
# Calling is.unsorted() Function
is.unsorted(x)
# Sorting the function
x1 <- sort(x)
x1
# Calling is.unsorted() Function
is.unsorted(x1)
輸出:
[1] 2 4 2 5 7 1 3 8 1 [1] TRUE [1] 1 1 2 2 3 4 5 7 8 [1] FALSE
相關用法
- R語言 exists()用法及代碼示例
- R語言 is.character()用法及代碼示例
- R語言 is.matrix()用法及代碼示例
- R語言 is.list()用法及代碼示例
- R語言 is.character()用法及代碼示例
- R語言 is.integer()用法及代碼示例
- R語言 is.numeric()用法及代碼示例
- R語言 is.complex()用法及代碼示例
- R語言 is.vector()用法及代碼示例
- R語言 is.call()用法及代碼示例
- R語言 is.table()用法及代碼示例
- R語言 is.expression()用法及代碼示例
- R語言 sapply()用法及代碼示例
- R語言 isSymmetric()用法及代碼示例
- R語言 is.logical()用法及代碼示例
- R語言 is.primitive()用法及代碼示例
- R語言 identity()用法及代碼示例
- R語言 type.convert()用法及代碼示例
- R語言 which()用法及代碼示例
- R語言 call()用法及代碼示例
- R語言 cumprod()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Check if an Object is sorted or not in R Programming – is.unsorted() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。