当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。