ORDER(zoo)
ORDER()所属R语言包:zoo
Ordering Permutation
订购置换
译者:生物统计家园网 机器人LoveR
描述----------Description----------
ORDER is a generic function for computing ordering permutations.
ORDER是一个泛型函数的计算顺序排列。
用法----------Usage----------
ORDER(x, ...)
## Default S3 method:[默认方法]
ORDER(x, ..., na.last = TRUE, decreasing = FALSE)
参数----------Arguments----------
参数:x
an object.
一个对象。
参数:...
further arguments to be passed to methods.
进一步的参数被传递到方法。
参数:na.last
for controlling the treatment of NAs. If TRUE, missing values in the data are put last; if FALSE, they are put first; if NA, they are removed.
用于控制处理NA的。 TRUE如果,遗漏值的数据放在最后,如果FALSE,他们把第一;如果NA,删除它们。
参数:decreasing
logical. Should the sort order be increasing or decreasing?
逻辑。如果排序顺序是增加还是减少?
Details
详细信息----------Details----------
ORDER is a new generic function which aims at providing the functionality of the non-generic base function order for arbitrary objects. Currently, there is only a default method which simply calls order. For objects (more precisely if is.object is TRUE) order leverages the generic xtfrm. Thus, to assure ordering works, one can supply either a method to xtfrm or to ORDER (or both).
ORDER是一个新的通用功能,其目的是在非泛型基函数order任意对象提供的功能。目前,仅仅是简单地调用默认的方法order。对象(更准确地说,如果is.object是TRUE)order充分利用了通用的xtfrm。因此,以保证订货作品,可以提供一种方法来xtfrm或ORDER(或两者)。
参见----------See Also----------
order
order
实例----------Examples----------
ORDER(rnorm(5))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|