标签: r
假设我有一个名为myfunction的函数。我如何完成此功能,如果提供test2,我想打印“test2 is provided”,如果没有,什么都不做。我想在不使用myfunction(test1)(可选参数)的情况下运行test2之类的函数。
myfunction(test1)
test2
myfunction <- function (test1, test2){ do something... if exists(test2){ print("test2 is provided")} }