R语言11-R语言中的条件结构

if语句: if 语句用于在条件为真时执行一段代码块。

x <- 10
if (x > 5) {
  print("x is greater than 5")
}

if-else语句: if-else 语句允许您在条件为真和条件为假时执行不同的代码块。

x <- 3
if (x > 5) {
  print("x is greater than 5")
} else {
  print("x is not greater than 5")
}

if-else if-else语句: 可以在 if 和 else 之间添加多个 else if 分支,以处理多个条件情况。

x <- 7
if (x > 10) {
  print("x is greater than 10")
} else if (x > 5) {
  print("x is greater than 5 but not greater than 10")
} else {
  print("x is not greater than 5")
}

switch语句: switch 语句用于根据某个表达式的值执行不同的代码块。

day <- "Monday"
switch(day,
  "Monday" = print("It's the start of the week"),
  "Friday" = print("It's the end of the week"),
  print("It's another day")
)

逻辑运算符: 逻辑运算符如 &&(与)、||(或)和 !(非)用于在条件中组合多个条件

x <- 8
if (x > 5 && x < 10) {
  print("x is between 5 and 10")
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

丰。。

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值