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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。