當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R語言 table()用法及代碼示例


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

相關用法


注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Create a Tabular representation of Data in R Programming – table() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。