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
相關用法
- R語言 is.logical()用法及代碼示例
- R語言 which()用法及代碼示例
- R語言 as.logical()用法及代碼示例
- R語言 is.expression()用法及代碼示例
- R語言 expression()用法及代碼示例
- R語言 lower.tri()用法及代碼示例
- R語言 upper.tri()用法及代碼示例
- R語言 complete.cases()用法及代碼示例
- R語言 bquote()用法及代碼示例
- R語言 with()用法及代碼示例
- R語言 eval()用法及代碼示例
- R語言 parse()用法及代碼示例
- R語言 deparse()用法及代碼示例
- R語言 replicate()用法及代碼示例
- R語言 charToRaw()用法及代碼示例
- R語言 deg2rad()用法及代碼示例
- R語言 rad2deg()用法及代碼示例
- R語言 between()用法及代碼示例
- R語言 is.primitive()用法及代碼示例
- R語言 lgamma()用法及代碼示例
- R語言 trigamma()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Check if a value or a logical expression is TRUE in R Programming – isTRUE() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。