如何使用if来检查R中的函数参数是否为TRUE

时间:2017-09-22 02:44:05

标签: r

有我的功能代码

fun(arg1){
    if(arg1 == 'ggwp'){
        new.fun1()
    }
}


>fun(ggwp)
>Error in fun(ggwp): object 'ggwp' not found.

我不知道如何使用如果条件使arg1 = str,然后在R中运行一个新函数。它与C不同。我尝试此代码时出错。那么,我该如何使其发挥作用呢?

0 个答案:

没有答案