在R中使用if else语句?

时间:2018-01-20 05:46:08

标签: r

编写一个名为 dayplan(温度,工作)的函数。函数应该首先检查它是否处理实际值。因此温度ε[-20,40] work∈{'是','否'} 。对于实际值,函数应该给出这些值:

温度> = 20 job =='Yes' 时,那么“吃冰淇淋”

温度> = 20 job =='No' 时,则“海”

温度> 20 job =='Yes' 时,那么“购物”

温度< 20 job =='Noo 时,然后“床”

1 个答案:

答案 0 :(得分:0)

函数的大纲可能如下所示:

dayplan <- function(temperature, work){
  if(...){
    if(...){
      print("Eat ice cream.")
    } else if(...) {
       ...
       ...
    }
  } else {
    print("Inputs not feasible.")
  }
}

使用每项活动的条件填补空白。