在 R 编程中将向量转换为因子 - as.factor()函数
R 编程语言中的as.factor()函数用于将传递的对象(通常是 Vector)转换为因子。
Syntax: as.factor(object)
Parameters:
- Object: Vector to be converted
R 示例中的 as.factor()函数
示例 1:在 R 中转换一个因子
R
# Creating a vector
x<-c("female", "male", "male", "female")
# Using as.factor() Function
# to convert vector into factor
as.factor(x)
R
data <- c("11.1", "3.11", "32.2", "2.2")
as.factor(data)
输出:
[1] female male male female
Levels: female male
示例 2:对包含数字的字符对象使用 as.factor()函数
在这里,我们将此函数应用于整数向量
R
data <- c("11.1", "3.11", "32.2", "2.2")
as.factor(data)
输出:
[1] 11.1 3.11 32.2 2.2
Levels: 11.1 2.2 3.11 32.2