R是否提供了一个对象/函数/方法/关键字来获取所有函数参数?
使用示例:
function(a, b="default", ...)
会在功能环境中提供a
和b
以及...
。是否有类似于list(...)
的声明,其结果中还包含a
和b
?
或者换一种方式:list(a=a, b=b, ...)
的简写,给定function(a, b, ...)
答案 0 :(得分:54)
一种解决方案是使用:
tempf <- function(a, b = 2, ...) {
argg <- c(as.list(environment()), list(...))
print(argg)
}
tempf(1, c = 3)
$a
[1] 1
$b
[1] 2
$c
[1] 3
这将创建一个命名的参数值列表。
答案 1 :(得分:51)
我认为您需要match.call
:
tmpfun <- function(a,b,...) {
print(as.list(match.call()))
print(as.list(match.call(expand.dots=FALSE)))
}
> tmpfun(a=1, b=2, c=3, d=4)
[[1]]
tmpfun
$a
[1] 1
$b
[1] 2
$c
[1] 3
$d
[1] 4
[[1]]
tmpfun
$a
[1] 1
$b
[1] 2
$...
$...$c
[1] 3
$...$d
[1] 4
答案 2 :(得分:8)
尝试args
功能
mean
函数有哪些参数?
> args(mean)
function (x, ...)
NULL
lm
功能呢?
> args(lm)
function (formula, data, subset, weights, na.action, method = "qr",
model = TRUE, x = FALSE, y = FALSE, qr = TRUE, singular.ok = TRUE,
contrasts = NULL, offset, ...)
NULL
如果您想获得参数列表,请尝试
as.list(args(lm))
答案 3 :(得分:7)
在搜索相关内容时偶然发现了这个问题。虽然我意识到这已有几年的历史了,但回答似乎并不令人满意,并且似乎没有任何现成的解决方案。
使用formals
和environment
函数的组合可以制作(不优雅的)变通方法。下面的示例使用从形式中提取的名称从环境中提取参数,然后附加省略号列表。如果希望获得在函数调用时设置的值,请将orig_values参数设置为TRUE。该函数仅包括在函数调用时隐式或显式设置的变量。
allargs <- function(orig_values = FALSE) {
# get formals for parent function
parent_formals <- formals(sys.function(sys.parent(n = 1)))
# Get names of implied arguments
fnames <- names(parent_formals)
# Remove '...' from list of parameter names if it exists
fnames <- fnames[-which(fnames == '...')]
# Get currently set values for named variables in the parent frame
args <- evalq(as.list(environment()), envir = parent.frame())
# Get the list of variables defined in '...'
args <- c(args[fnames], evalq(list(...), envir = parent.frame()))
if(orig_values) {
# get default values
defargs <- as.list(parent_formals)
defargs <- defargs[unlist(lapply(defargs, FUN = function(x) class(x) != "name"))]
args[names(defargs)] <- defargs
setargs <- evalq(as.list(match.call())[-1], envir = parent.frame())
args[names(setargs)] <- setargs
}
return(args)
}
tempf <- function(a, b = 2, ...) {
d <- 5
b <- 3
cat("Currently set values defined in call or formals\n")
print(allargs())
cat("Values as defined at the time of the call\n")
print(allargs(T))
}
tempf(1, c = 3)
Currently set values defined in call or formals
$a
[1] 1
$b
[1] 3
$c
[1] 3
Values as defined at the time of the call
$a
[1] 1
$b
[1] 2
$c
[1] 3
答案 4 :(得分:4)
我相信您正在寻找formals
:
formals(sd)
$x
$na.rm
[1] FALSE
在此处使用dput
会为您提供您在问题中指定的表单:
dput(formals(sd))
list(x = , na.rm = FALSE)
请注意formals
不适用于原语函数,只适用于闭包。
答案 5 :(得分:1)
test <- function(
x = 1,
y = 2,
...
) {
if(length(list(...)) == 0) {
print(as.list(environment()))
} else {
print(c(as.list(environment()), list(...)))
}
}
test()
test(z = 3)
答案 6 :(得分:1)
rlang::fn_fmls
提供了一个简洁的解决方案:
library(ggplot2)
library(rlang)
# action
argument_list <- rlang::fn_fmls(fn = geom_point)
# evaluate output
class(argument_list)
#> [1] "pairlist"
is.list(argument_list)
#> [1] TRUE
argument_list
#> $mapping
#> NULL
#>
#> $data
#> NULL
#>
#> $stat
#> [1] "identity"
#>
#> $position
#> [1] "identity"
#>
#> $...
#>
#>
#> $na.rm
#> [1] FALSE
#>
#> $show.legend
#> [1] NA
#>
#> $inherit.aes
#> [1] TRUE
由reprex package(v0.3.0)于2020-02-25创建