as.table()
R语言中的函数用于将对象转换为表。
用法: as.table(x)
参数:
x:要转换的对象
范例1:
# R Program to convert
# an object to a table
# Creating a vector
vec = c(2, 4, 3, 1, 2, 3, 2, 1, 4, 2)
# Calling as.table() Function
as.table(vec)
输出:
A B C D E F G H I J 2 4 3 1 2 3 2 1 4 2
范例2:
# R Program to convert
# an object to a table
# Creating a matrix
mat = matrix(c(1:9), 3, 3)
mat
# Calling as.table() Function
as.table(mat)
输出:
[, 1] [, 2] [, 3] [1, ] 1 4 7 [2, ] 2 5 8 [3, ] 3 6 9 A B C A 1 4 7 B 2 5 8 C 3 6 9
相关用法
- R语言 is.table()用法及代码示例
- R语言 type.convert()用法及代码示例
- R语言 as.list()用法及代码示例
- R语言 as.character()用法及代码示例
- R语言 as.integer()用法及代码示例
- R语言 as.logical()用法及代码示例
- R语言 as.vector()用法及代码示例
- R语言 as.matrix()用法及代码示例
- R语言 toString()用法及代码示例
- R语言 sapply()用法及代码示例
- R语言 read.table()用法及代码示例
- R语言 table()用法及代码示例
- R语言 identity()用法及代码示例
- R语言 which()用法及代码示例
- R语言 call()用法及代码示例
- R语言 cumprod()用法及代码示例
- R语言 is.character()用法及代码示例
- R语言 ncol()用法及代码示例
- R语言 is.factor()用法及代码示例
- R语言 nrow()用法及代码示例
- R语言 unique()用法及代码示例
- R语言 max()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Convert an Object to a Table in R Programming – as.table() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。