如何检查R函数的输入参数的存在而不使用' ...'

时间:2018-03-19 07:01:28

标签: r function arguments user-defined

请考虑以下示例来检查我的参数:

fun <- function(x, y, z) { 
  notexist <- is.null(y)
  return(notexist)
}

fun(x) # Should return TRUE since y is missing
fun(x,y) # Should return FALSE since y is being passed

我遇到了一个类似的帖子,它使用了三点构造How to check existence of an input argument for R functions。但我不想使用exists,missing,get,hasArg和three-dots构造。但我想通过使用args和is.null()来编写这段代码?没有三点可能吗?

0 个答案:

没有答案