本文介绍了从数据框中删除与行匹配的行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我要删除某行符合字符串匹配条件的数据框中的所有行吗?
I do I remove all rows in a dataframe where a certain row meets a string match criteria?
例如:
A,B,C
4,3,Foo
2,3,Bar
7,5,Zap
如何返回不包含C = Foo的所有行的数据框:
How would I return a dataframe that excludes all rows where C = Foo:
A,B,C
2,3,Bar
7,5,Zap
推荐答案
只需将 ==
与否定符号(!
)。如果dtfm是data.frame的名称:
Just use the ==
with the negation symbol (!
). If dtfm is the name of your data.frame:
dtfm[!dtfm$C == "Foo", ]
或者,在比较中移动否定项:
Or, to move the negation in the comparison:
dtfm[dtfm$C != "Foo", ]
或者使用 subset()
,甚至更短:
subset(dtfm, C!="Foo")
这篇关于从数据框中删除与行匹配的行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!