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


R语言 is.integer()用法及代码示例


is.integer()R语言中的函数用于检查作为参数传递给它的对象是否为整数类型。

用法: is.integer(x)

参数:
x:检查对象

范例1:


# R program to check if 
# object is an integer
  
# Creating a vector
x1 <- 4L
x2 <- c(1:6)
x3 <- c("a", "b", "c", "d")
x4 <- c(1, 2, "a", 3, "b")
  
# Calling is.integer() function
is.integer(x1)
is.integer(x2)
is.integer(x3)
is.integer(x4)

输出:

[1] TRUE
[1] TRUE
[1] FALSE
[1] FALSE

范例2:


# R program to check if 
# object is an integer
  
# Creating a matrix
x1 <- matrix(c(1:9), 3, 3)
  
# Calling is.integer() function
is.integer(x1)

输出:

[1] TRUE

相关用法


注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Check if an Object is of Type Integer in R Programming – is.integer() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。