char.expand(base)
char.expand()所属R语言包:base
Expand a String with Respect to a Target Table
一个String方面展开目标表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Seeks a unique match of its first argument among the elements of its second. If successful, it returns this element; otherwise, it performs an action specified by the third argument.
寻求它的第二个元素之间的第一个参数的唯一匹配。如果成功,它返回这个元素,否则执行第三个参数指定了一个行动。
用法----------Usage----------
参数----------Arguments----------
参数:input
a character string to be expanded.
字符串将扩大。
参数:target
a character vector with the values to be matched against.
一个匹配值的特征向量。
参数:nomatch
an R expression to be evaluated in case expansion was not possible.
R的表达,要扩大的情况下进行评估是不可能的。
Details
详情----------Details----------
This function is particularly useful when abbreviations are allowed in function arguments, and need to be uniquely expanded with respect to a target table of possible values.
此功能是非常有用的,允许在函数参数时的缩写,需要独特的方面扩大的可能值的目标表。
值----------Value----------
A length-one character vector, one of the elements of target (unless nomatch is changed to be a non-error, when it can be a zero-length character string).
长度特征向量,target元素(除非nomatch改为非错误,当它可以是一个零长度字符串)。
参见----------See Also----------
charmatch and pmatch for performing partial string matching.
charmatch和pmatch执行部分字符串匹配。
举例----------Examples----------
locPars <- c("mean", "median", "mode")
char.expand("me", locPars, warning("Could not expand!"))
char.expand("mo", locPars)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|