is.vector() R 语言中的函数用于返回 TRUE,如果给定的向量是指定的模式,除了名称之外没有其他属性。否则返回 FALSE。
用法: is.vector(x, mode = “any”)
参数:
x:R对象
mode:命名原子模式或 “list” 或 “expression” 或 “any” 的字符串
范例1:
# R program to illustrate
# is.vector function
# Initializing some data types
x <- c(a = 1, b = 2)
y <- list(c("GFG", "gfg"), matrix(c(1, 2, 3)))
z <- "Geeks"
# Calling is.vector() function
is.vector(x)
is.vector(y)
is.vector(z)
输出:
[1] TRUE [1] TRUE [1] TRUE
范例2:
# R program to illustrate
# is.vector function
# Initializing some data types
x <- c(a = 1, b = 2)
y <- list(c("GFG", "gfg"), matrix(c(1, 2, 3)))
z <- "Geeks"
# Calling is.vector() function
is.vector(x, mode = "list")
is.vector(x, mode = "expression")
is.vector(x, mode = "any")
is.vector(y, mode = "list")
is.vector(y, mode = "expression")
is.vector(y, mode = "any")
is.vector(z, mode = "list")
is.vector(z, mode = "expression")
is.vector(z, mode = "any")
输出:
[1] FALSE [1] FALSE [1] TRUE [1] TRUE [1] FALSE [1] TRUE [1] FALSE [1] FALSE [1] TRUE
相关用法
- R语言 as.vector()用法及代码示例
- R语言 as.logical()用法及代码示例
- R语言 grepl()用法及代码示例
- R语言 is.character()用法及代码示例
- R语言 is.matrix()用法及代码示例
- R语言 is.list()用法及代码示例
- R语言 exists()用法及代码示例
- R语言 is.character()用法及代码示例
- R语言 is.integer()用法及代码示例
- R语言 is.numeric()用法及代码示例
- R语言 is.complex()用法及代码示例
- R语言 is.call()用法及代码示例
- R语言 is.table()用法及代码示例
- R语言 is.expression()用法及代码示例
- R语言 is.unsorted()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Check for the Existence of a Vector Object in R Programming – is.vector() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。