这有效:
> match.arg("", choices="")
[1] ""
可是:
> match.arg("", choices=c("", "blue"))
Error during wrapup: 'arg' should be one of “”, “blue”
这是一个错误吗?是否有一种简单的方法可以使其发挥作用?
当然,我可以做一个变通方法,例如使用"none"
代替""
,然后替换以防这是匹配值。
choices <- c("", "blue")
choices[charmatch("", table=choices)]
如果没有匹配值,则返回NA
。因此,在这种情况下仍然需要编写错误消息。
答案 0 :(得分:1)
好吧,既然没有选择来处理这种情况,我已经对match.arg
函数进行了修改(感谢@akrun)。
我只是替换了
行i <- pmatch(arg, choices, nomatch = 0L, duplicates.ok = TRUE)
与
i <- charmatch(arg, choices, nomatch = 0L)
这是修改过的函数(至少它适用于?match.arg
中给出的示例):
match.arg2 <- function(arg, choices, several.ok=FALSE){
if (missing(choices)) {
formal.args <- formals(sys.function(sys.parent()))
choices <- eval(formal.args[[as.character(substitute(arg))]])
}
if (is.null(arg))
return(choices[1L])
else if (!is.character(arg))
stop("'arg' must be NULL or a character vector")
if (!several.ok) {
if (identical(arg, choices))
return(arg[1L])
if (length(arg) > 1L)
stop("'arg' must be of length 1")
}
else if (length(arg) == 0L)
stop("'arg' must be of length >= 1")
i <- charmatch(arg, choices, nomatch = 0L)
if (all(i == 0L))
stop(gettextf("'arg' should be one of %s", paste(dQuote(choices),
collapse = ", ")), domain = NA)
i <- i[i > 0L]
if (!several.ok && length(i) > 1)
stop("there is more than one match in 'match.arg'")
choices[i]
}