gpt4 book ai didi

r - 子集函数与 "different than"?

转载 作者:行者123 更新时间:2023-12-04 11:06:21 26 4
gpt4 key购买 nike

是否可以通过说诸如子集(数据集,IA_LABEL 不等于“Er”或“Sie”或“Es”或“wird”或“gleich”)来使用子集函数?
我感兴趣的是“不等于”运算符,子集函数是否有类似的东西?

谢谢,
卡特琳娜

最佳答案

如果您想排除所有这些单词,那么最好使用否定 (NOT) 运算符的组合 ! ,并设置成员身份,%in% .

wordList <- c("Er","Sie","Es","wird","gleich")
subset(dataset, !(IA_LABEL %in% wordList))

为了使其不区分大小写,您可能希望将它们中的每一个都包装在 toupper 中。或 tolower .

关于r - 子集函数与 "different than"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7245453/

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