获取错误使用的函数(来自调用)

时间:2015-10-27 15:50:04

标签: r

我想从错误中提取正在使用的函数的名称。如果我有:

mean(letters)
"P" * 5

我想要提取"mean.default""*"。我可以从错误中得到如下调用:

capturer <- function(x){
    tryCatch({
        x
    }, warning = function(w) {
        w
    }, error = function(e) {
        e
    })
}

capturer(mean(letters))$call
## mean.default(letters)

capturer("P" * 5)$call
## "P" * 5

但是没有办法获取函数名称。

1 个答案:

答案 0 :(得分:8)

您可以使用$call[[1]]获取功能名称部分。我们还可以添加一个deparse参数来添加将结果作为字符串返回的选项。

capturer <- function(x, deparse = FALSE) {
    out <- tryCatch({
        x
    }, warning = function(w) {
        w$call[[1]]
    }, error = function(e) {
        e$call[[1]]
    })
    if(deparse) deparse(out) else out
}

## these return a call
capturer("P" * 5)
# `*`
capturer(mean(letters))
# mean.default

## these return a character
capturer("P" * 5, deparse = TRUE)
# [1] "*"
capturer(mean(letters), deparse = TRUE)
# [1] "mean.default"