具有“不同于”的子集函数?

发布于 2024-12-02 06:35:01 字数 156 浏览 1 评论 0原文

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

谢谢, 卡特琳娜

is it possible to use the subset function by saying sth like subset(dataset, IA_LABEL not equal to "Er" or "Sie" or "Es" or "wird" or "gleich") ?
what interests me is the "not equal to" operator, is there something like that for the subset function?

thanks,
Katerina

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

〃温暖了心ぐ 2024-12-09 06:35:01

如果您想排除所有这些单词,那么最好结合使用否定 (NOT) 运算符 ! 和设置成员资格 %in%

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

为了使其不区分大小写,您可能需要将它们分别包装在 touppertolower 中。

If you are wanting to exclude all of those words, then you are better of using a combination of the negation (NOT) operator, !, and set membership, %in%.

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

To make it case insensitive you might want to wrap each of them in toupper or tolower.

夜深人未静 2024-12-09 06:35:01

不等于运算符写为 !=

详细信息请参见?Comparison

使用子集的示例:

> subset(airquality, Day != 1, select = -Temp)[1:5, ]
  Ozone Solar.R Wind Month Day
2    36     118  8.0     5   2
3    12     149 12.6     5   3
4    18     313 11.5     5   4
5    NA      NA 14.3     5   5
6    28      NA 14.9     5   6

The not equal operator is written !=

See ?Comparison for details.

An example using subset:

> subset(airquality, Day != 1, select = -Temp)[1:5, ]
  Ozone Solar.R Wind Month Day
2    36     118  8.0     5   2
3    12     149 12.6     5   3
4    18     313 11.5     5   4
5    NA      NA 14.3     5   5
6    28      NA 14.9     5   6
人疚 2024-12-09 06:35:01

使用 Hmisc 中的 %nin% 函数

require(Hmisc)
subset(dataset, IA_LABEL %nin% wordList)

Using the %nin% function in Hmisc

require(Hmisc)
subset(dataset, IA_LABEL %nin% wordList)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文