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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。