发布于 2016-01-02 09:30:50 | 484 次阅读 | 评论: 0 | 来源: 网络整理
if语句包含一个布尔表达式后跟一个或多个语句。
下面是在R语言中创建 if语句 的基本语法:
if(boolean_expression) {
// statement(s) will execute if the boolean expression is true.
}
如果布尔表达式为true,则if语句里的代码块将被执行。如果布尔表达式是false,那么if语句的第一组码结束(右大括号后)将被执行。
x <- 30L
if(is.integer(x)){
print("X is an Integer")
}
当上述代码被编译和执行时,它产生了以下结果:
[1] "X is an Integer"