
[英]How to remove all rows belonging to a particular group when only one row fulfills the condition in R?
[英]How to delete all rows except those belonging to more than one group
对于选择特定组, %in%
比grep()
/ grepl()
更具体。
df[df$group %in% c('a', 'c'), ]
或者
subset(df, group %in% c('a', 'c'))
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.