當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。