is.unsorted(base)
is.unsorted()所属R语言包:base
Test if an Object is Not Sorted
测试对象如果未排序
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Test if an object is not sorted, without the cost of sorting it.
测试对象如果不排序,不排序的成本。
用法----------Usage----------
is.unsorted(x, na.rm = FALSE, strictly = FALSE)
参数----------Arguments----------
参数:x
an R object with a class or a numeric, complex, character or logical vector.
一类或一个数字,复杂的,性格或逻辑向量R对象。
参数:na.rm
logical. Should missing values be removed before checking?
逻辑。遗漏值应被拆除前检查?
参数:strictly
logical indicating if the check should be for strictly increasing values.
逻辑表示,如果检查应该是严格的增加值。
值----------Value----------
A length-one logical value. All objects of length 0 or 1 are sorted: the result will be NA for objects of length 2 or more except for atomic vectors and objects with a class (where the >= or > method is used).
一长一逻辑值。长度为0或1的所有对象的排序结果将是NA>=或>方法为对象的长度为2或更多原子的向量和对象类(除外使用)。
参见----------See Also----------
sort, order.
sort,order。
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|