按列中的值过滤数据框

发布于 2024-12-04 02:17:36 字数 182 浏览 1 评论 0原文

我正在使用数据集LearnBayes。对于那些想要查看实际数据的人:

install.packages('LearnBayes')

我正在尝试根据列中的值过滤掉行。例如,如果列值为“水”,那么我想要该行。如果列值为“牛奶”,那么我不需要它。最终,我试图过滤掉所有饮料栏为“水”的人。

I am working with the dataset LearnBayes. For those that want to see the actual data:

install.packages('LearnBayes')

I am trying to filter out rows based on the value in the columns. For example, if the column value is "water", then I want that row. If the column value is "milk", then I don't want it. Ultimately, I am trying to filter out all individuals who's Drink column is "water".

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

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

发布评论

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

评论(3

薄暮涼年 2024-12-11 02:17:36

子集命令不是必需的。只需使用数据框索引

studentdata[studentdata$Drink == 'water',]

阅读来自 ?subset 的警告

这是一个旨在交互使用的便利功能。为了
编程时最好使用标准子集函数,例如
'[',特别是参数的非标准评估
“子集”可能会产生意想不到的后果。

The subset command is not necessary. Just use data frame indexing

studentdata[studentdata$Drink == 'water',]

Read the warning from ?subset

This is a convenience function intended for use interactively. For
programming it is better to use the standard subsetting functions like
‘[’, and in particular the non-standard evaluation of argument
‘subset’ can have unanticipated consequences.

淡紫姑娘! 2024-12-11 02:17:36

试试这个:

subset(studentdata, Drink=='water')

应该可以。

Try this:

subset(studentdata, Drink=='water')

that should do it.

ぃ双果 2024-12-11 02:17:36

我想我会用 dplyr 解决方案更新它

library(dplyr)    
filter(studentdata, Drink == "water")

Thought I'd update this with a dplyr solution

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