gpt4 book ai didi

r - 当列包含因子时,使用OR子集数据框

转载 作者:行者123 更新时间:2023-12-03 13:44:17 24 4
gpt4 key购买 nike

我想在R的数据帧中创建一个子集,该子集基于一列因子中的一个或另一个值,但看来我不能将|与因子值一起使用。

例:

# fake data
x <- sample(1:100, 9)
nm <- c("a", "a", "a", "b", "b", "b", "c", "c", "c")
fake <- cbind(as.data.frame(nm), as.data.frame(x))
# subset fake to only rows with name equal to a or b
fake.trunk <- fake[fake$nm == "a" | "b", ]


产生错误:

Error in fake$nm == "a" | "b" : 
operations are possible only for numeric, logical or complex types


我该怎么做?

显然,我的实际数据框在factor列中有3个以上的值,因此仅使用 != "c"无效。

最佳答案

您需要fake.trunk <- fake[fake$nm == "a" | fake$nm == "b", ]。一种更简洁的写法(尤其是具有两个以上的条件)是:

fake[ fake$nm %in% c("a","b"), ]

关于r - 当列包含因子时,使用OR子集数据框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5680819/

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