有没有办法“访问”函数中所有传递的参数?我相信这可以通过参数数组在javascript中完成,R中是否有等价物?
myfunc <- function() {
print(arguments[1])
print(arguments[2])
}
R> myfunc("A","B")
[1] "A"
[1] "B"
有没有办法“访问”函数中所有传递的参数?我相信这可以通过参数数组在javascript中完成,R中是否有等价物?
myfunc <- function() {
print(arguments[1])
print(arguments[2])
}
R> myfunc("A","B")
[1] "A"
[1] "B"