当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 isTRUE()用法及代码示例


isTRUE()R语言中的函数用于检查值或逻辑表达式是否为真。

用法: isTRUE(x)

参数:
x:逻辑或 number-like 向量

范例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

相关用法


注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Check if a value or a logical expression is TRUE in R Programming – isTRUE() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。