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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。