gpt4 book ai didi

R - 将因子更改为具有特定映射的数字

转载 作者:行者123 更新时间:2023-12-04 10:29:42 26 4
gpt4 key购买 nike

假设我读入了一个数据框,其中一列包含字符串作为因子。我想将因子转换为数字,但具有特定映射。这种转换通常是以后计算的前导步骤。例如:

> library(rpart)

> head(car90["Type"])
Type
Acura Integra Small
Acura Legend Medium
Audi 100 Medium
Audi 80 Compact
BMW 325i Compact
BMW 535i Medium

> summary(car90$Type)
Compact Large Medium Small Sporty Van NA's
19 7 26 22 21 10 6

在 car90$Type 列中,我想将“Compact”设置为 -10,“Large”设置为 -1,“Medium”设置为 0,“Small”设置为 1,“Sporty”设置为10,'Van' 为 20,其中数字是数字,而不是因数。我该怎么做?

我已经看过相关问题,但没有一个提供解决方案。

Replace specific column "words" into number or blank

Changing column names of a data frame in R

Replace contents of factor column in R dataframe

Convert factor to integer

最佳答案

我只会使用向量下标;这是一个例子:

R>a <- as.factor(c("C", "L", "M", "L", "C"))
R>a
[1] C L M L C
Levels: C L M
R>b <- c(C=-10,L=-1,M=0)
R>b
C L M
-10 -1 0
R>
R>b[a]
C L M L C
-10 -1 0 -1 -10
R>

关于R - 将因子更改为具有特定映射的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22056735/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com