gpt4 book ai didi

R 使用 ifelse 更改因子值

转载 作者:行者123 更新时间:2023-12-04 09:40:14 25 4
gpt4 key购买 nike

我有一列是因子变量。我需要更改因子为某个罕见水平的所有单元格的值。我正在使用以下代码,但它似乎不起作用:

test2$timeFactor <- ifelse(test2$timeFactor == '94', '-1000', test2$timeFactor)

我也试过:
test2$timeFactor <- factor(ifelse(test2$timeFactor == '94', '-1000', test2$timeFactor))

但似乎都不起作用。我在这里遗漏了什么明显的东西?

最佳答案

您最好更改 levels :

set.seed(1)
x <- factor(sample(letters[1:3],10,replace=T))
x
[1] a b b c a c c b b a
Levels: a b c

levels(x)[which(levels(x)=="c")] <- "z"
x
[1] a b b z a z z b b a
Levels: a b z

关于R 使用 ifelse 更改因子值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10194454/

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