nargs(base)
nargs()所属R语言包:base
The Number of Arguments to a Function
函数参数的数量
译者:生物统计家园网 机器人LoveR
描述----------Description----------
When used inside a function body, nargs returns the number of arguments supplied to that function, including positional arguments left blank.
当函数体内部使用,nargs返回提供给该函数的参数,包括位置参数的数量留空。
用法----------Usage----------
Details
详情----------Details----------
The count includes empty (missing) arguments, so that foo(x,,z) will be considered to have three arguments (see "Examples"). This can occur in rather indirect ways, so for example x[] might dispatch a call to `[.some_method`(x, ) which is considered to have two arguments.
该计数包括空(失踪)的参数,使foo(x,,z)将被视为有三个参数(见“的例子”)。这可能发生,而间接的方式,例如x[]可能派遣一个电话[.some_method(x, )这被认为有两个参数。
This is a primitive function.
这是一种原始的功能。
参考文献----------References----------
The New S Language. Wadsworth & Brooks/Cole.
参见----------See Also----------
args, formals and sys.call.
args,formals和sys.call。
举例----------Examples----------
tst <- function(a, b = 3, ...) {nargs()}
tst() # 0[0]
tst(clicketyclack) # 1 (even non-existing)[1(甚至不存在)]
tst(c1, a2, rr3) # 3[3]
foo <- function(x, y, z, w) {
cat("call was", deparse(match.call()), "\n")
nargs()
}
foo() # 0[0]
foo(,,3) # 3[3]
foo(z=3) # 1, even though this is the same call[1,即使是相同的呼叫]
nargs()# not really meaningful[没有太大意义]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|