检查 R 编程中的值或逻辑表达式是否为 TRUE - isTRUE()函数
R语言中的isTRUE()
函数用于检查一个值或一个逻辑表达式是否为真。
Syntax: isTRUE(x)
Parameters:
x: logical or number-like vector
示例 1:
# R Program to test whether
# an expression is TRUE
# Calling isTRUE() Function
isTRUE(1)
isTRUE(1>0)
isTRUE("a")
输出:
[1] FALSE
[1] TRUE
[1] FALSE
示例 2:
# R Program to test whether
# an expression is TRUE
# Creating vectors
x <- c(1, 2)
y <- c(4, 5, 6, 7)
# Calling isTRUE() Function
isTRUE(x < y)
isTRUE(x && y)
isTRUE(x || y)
输出:
[1] FALSE
[1] TRUE
[1] TRUE