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”)
?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”)
?
Or maybe
The first one by a mile.
Is this a joke?