table()
R语言中的函数用于以表格的形式创建具有变量名称和频率的数据的分类表示。
用法: table(x)
参数:
x:要转换的对象
范例1:
# R Program to create
# a tabular representation of data
# Creating a vector
vec = c(2, 4, 3, 1, 2, 3, 2, 1, 4, 2)
# Calling table() Function
table(vec)
输出:
vec 1 2 3 4 2 4 2 2
范例2:
# R Program to create
# a tabular representation of data
# Creating a data frame
df = data.frame(
"Name" = c("abc", "cde", "def"),
"Gender" = c("Male", "Female", "Male")
)
# Calling table() function
table(df)
输出:
Gender Name Female Male abc 0 1 cde 1 0 def 0 1
相关用法
- R语言 as.table()用法及代码示例
- R语言 is.table()用法及代码示例
- R语言 strftime()用法及代码示例
- R语言 expand.grid()用法及代码示例
- R语言 subset()用法及代码示例
- R语言 quantile()用法及代码示例
- R语言 data.matrix()用法及代码示例
- R语言 with()用法及代码示例
- R语言 sample()用法及代码示例
- R语言 read.table()用法及代码示例
- R语言 call()用法及代码示例
- R语言 strrep()用法及代码示例
- R语言 curve()用法及代码示例
- R语言 expression()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Create a Tabular representation of Data in R Programming – table() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。