I know that `filter` can easily achieve this, but it is error prone when there are `NA` values. Dropping using `filter(!condition)` drops `NA`s but `drop(condition)` would keep them. Hope this helps.