is.logical()
R語言中的函數用於檢查一個值是否符合邏輯。
用法: is.logical(x)
參數:
x:要檢查的值
範例1:
# R Program to test whether
# a value is logical or not
# Calling is.logical() function
is.logical(0)
is.logical(!5)
is.logical(T)
is.logical(FALSE)
輸出:
[1] FALSE [1] TRUE [1] TRUE [1] TRUE
範例2:
# R Program to test whether
# a value is logical or not
# Creating vector
x1 <- c(1, 2, 3, 4)
x2 <- c(T, F, TRUE, FALSE, ! 2)
x3 <- c(1, T, F)
# Calling is.logical() function
is.logical(x1)
is.logical(x2)
is.logical(x3)
輸出:
[1] FALSE [1] TRUE [1] FALSE
相關用法
- R語言 as.logical()用法及代碼示例
- R語言 isTRUE()用法及代碼示例
- R語言 which()用法及代碼示例
- R語言 complete.cases()用法及代碼示例
- R語言 charToRaw()用法及代碼示例
- R語言 deg2rad()用法及代碼示例
- R語言 rad2deg()用法及代碼示例
- R語言 exists()用法及代碼示例
- R語言 isSymmetric()用法及代碼示例
- R語言 is.unsorted()用法及代碼示例
- R語言 between()用法及代碼示例
- R語言 is.primitive()用法及代碼示例
- R語言 lgamma()用法及代碼示例
- R語言 trigamma()用法及代碼示例
- R語言 qcauchy()用法及代碼示例
- R語言 qlogis()用法及代碼示例
- R語言 qlnorm()用法及代碼示例
- R語言 qpois()用法及代碼示例
- R語言 qnbinom()用法及代碼示例
- R語言 ecdf()用法及代碼示例
- R語言 pf()用法及代碼示例
- R語言 qf()用法及代碼示例
- R語言 qweibull()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Check whether a value is logical or not in R Programming – is.logical() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。