MATCH(zoo)
MATCH()所属R语言包:zoo
Value Matching
值匹配
译者:生物统计家园网 机器人LoveR
描述----------Description----------
MATCH is a generic function for value matching.
MATCH是一个通用函数值匹配。
用法----------Usage----------
MATCH(x, table, nomatch = NA, ...)
## S3 method for class 'times'
MATCH(x, table, nomatch = NA, units = "sec", eps = 1e-10, ...)
参数----------Arguments----------
参数:x
an object.
一个对象。
参数:table
the values to be matched against.
的值,以进行匹配。
参数:nomatch
the value to be returned in the case when no match is found. Note that it is coerced to integer.
在没有找到匹配的情况下返回的值。请注意,它被强制转换为integer。
参数:units
See trunc.times.
见trunc.times。
参数:eps
See trunc.times.
见trunc.times。
参数:...
further arguments to be passed to methods.
进一步的参数被传递到方法。
Details
详细信息----------Details----------
MATCH is a new generic function which aims at providing the functionality of the non-generic base function match for arbitrary objects. Currently, there is only a default method which simply calls match.
MATCH是一个新的通用功能,其目的是在非泛型基函数match任意对象提供的功能。目前,仅仅是简单地调用默认的方法match。
MATCH.times is used for chron objects. x will match any time in table less than units away.
MATCH.times用于chron对象的。 x将匹配任何时间,在table小于units离开。
参见----------See Also----------
match
match
实例----------Examples----------
MATCH(1:5, 2:3)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|