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


R語言 is.logical()用法及代碼示例


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

相關用法


注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Check whether a value is logical or not in R Programming – is.logical() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。