is.table()
R语言中的函数用于检查对象是否为表。
用法: is.table(x)
参数:
x:检查对象
范例1:
# R Program to check
# if an object is a table
# Creating a vector
vec = c(2, 4, 3, 1, 2, 3, 2, 1, 4, 2)
# calling is.table() Function
is.table(vec)
# Converting to table
x <- as.table(vec)
x
# Calling is.table() again
is.table(x)
输出:
[1] FALSE A B C D E F G H I J 2 4 3 1 2 3 2 1 4 2 [1] TRUE
范例2:
# R Program to convert
# an object to a table
# Creating a matrix
mat = matrix(c(1:9), 3, 3)
# Calling is.table() function
is.table(mat)
# Converting to table
x <- as.table(mat)
x
# Calling is.table() function again
is.table(x)
输出:
[1] FALSE A B C A 1 4 7 B 2 5 8 C 3 6 9 [1] TRUE
相关用法
- R语言 as.table()用法及代码示例
- 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.vector()用法及代码示例
- R语言 is.call()用法及代码示例
- R语言 is.expression()用法及代码示例
- R语言 is.unsorted()用法及代码示例
- R语言 sapply()用法及代码示例
- R语言 read.table()用法及代码示例
- R语言 table()用法及代码示例
- R语言 is.primitive()用法及代码示例
- R语言 identity()用法及代码示例
- R语言 type.convert()用法及代码示例
- R语言 which()用法及代码示例
- R语言 call()用法及代码示例
- R语言 cumprod()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Check if an Object is a Table in R Programming – is.table() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。