upvote
I think the users have clearly delivered the verdict that it is friendlier than base R. Admittedly a low bar. Non R users, which do you prefer:

    foo[foo$bar == “baz”,]

    foo |> filter(bar == “baz”)

?
reply
Or maybe

    foo[bar == “baz”]
reply
The first one by a mile.

Is this a joke?

reply