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
相关用法
- R语言 type.convert()用法及代码示例
- R语言 as.integer()用法及代码示例
- R语言 is.character()用法及代码示例
- R语言 is.character()用法及代码示例
- R语言 is.numeric()用法及代码示例
- R语言 is.complex()用法及代码示例
- R语言 mode()用法及代码示例
- R语言 is.matrix()用法及代码示例
- R语言 is.list()用法及代码示例
- R语言 exists()用法及代码示例
- R语言 is.vector()用法及代码示例
- R语言 is.call()用法及代码示例
- R语言 is.table()用法及代码示例
- R语言 is.expression()用法及代码示例
- R语言 is.unsorted()用法及代码示例
- R语言 sapply()用法及代码示例
- R语言 typeof()用法及代码示例
- R语言 strtoi()用法及代码示例
- R语言 utf8ToInt()用法及代码示例
- R语言 intToUtf8()用法及代码示例
- R语言 intToBits()用法及代码示例
- R语言 as.binary()用法及代码示例
- R语言 is.primitive()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Check if an Object is of Type Integer in R Programming – is.integer() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。