Selecting multiple elements with [
Is this also base R ??? No df$ prefix, no quotes for the names vector!
df |> subset(x > 1, c(y, z))
## y z
## 2 l TRUE
So this function has ergonomics similar to filter() and select().
It is base R!
And it was inspiration for dplyr’s syntax.