标签: r filter dplyr
如何过滤j列中值为x且j + 1列中值为y的行
因此在mtcars示例中,我想过滤掉am = 1和gear = 5的行。下面的代码不能解决问题:
mtcars %>% filter(am != 1 & gear != 5)
谢谢
Jelle