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


R語言 as.factor()用法及代碼示例


as.factor()R語言中的函數用於將傳遞的對象(通常是Vector)轉換為Factor。

用法: as.factor(object)

參數:
Object:要轉換的向量

範例1:


# Creating a vector 
x<-c("female", "male", "male", "female") 
  
# Using as.factor() Function
# to convert vector into factor
as.factor(x)

輸出:

[1] female male   male   female
Levels:female male

範例2:


# Creating a vector 
x<-c("North", "North", "East", "West") 
  
# Using as.factor() Function
# to convert vector into factor
as.factor(x)

輸出:

[1] North North East  West 
Levels:East North West

相關用法


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