繁体   English   中英

使用dplyr过滤R中的因子水平

[英]Filter factor levels in R using dplyr

这是我的数据框DF的一瞥():

Observations: 221184
Variables:
$ Epsilon    (fctr) 96002.txt, 96002.txt, 96004.txt, 96004.txt, 96005.txt, 960...
$ Value   (int) 61914, 61887, 61680, 61649, 61776, 61800, 61753, 61725, 616...

我想使用dplyr过滤(删除)Epsilon前两个级别的所有观察结果。

我的意思是:

DF %>% filter(Epsilon != "96002.txt" & Epsilon != "96004.txt")

但是,我不想使用字符串值(即“96002.txt”和“96004.txt”)而是使用级别顺序(即1和2),因为它应该是一个独立于级别的通用指令值。

您可以轻松地将factor转换为integer ,然后使用条件。 只需将filter语句替换为:

 filter(as.integer(Epsilon)>2)

更一般地说,如果你想要消除索引级别的向量,你可以尝试:

 #some random levels we don't want
 nonWantedLevels<-c(5,6,9,12,13)
 #just the filter part
 filter(!as.integer(Epsilon) %in% nonWantedLevels)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM