r语言if else语句怎么写
时间: 2023-10-17 18:10:55 浏览: 118
if else 语句
在R语言中,if-else语句的基本格式如下:
```
if (condition) {
# code to execute if condition is true
} else {
# code to execute if condition is false
}
```
其中,`condition`是一个逻辑表达式,如果它的值为TRUE,则执行if语句块中的代码,否则执行else语句块中的代码。
例如,以下代码演示了一个简单的if-else语句:
```
x <- 5
if (x > 10) {
print("x is greater than 10")
} else {
print("x is less than or equal to 10")
}
```
在这个例子中,由于x的值小于等于10,所以执行else语句块中的代码,输出结果为" x is less than or equal to 10"。
阅读全文