Hacker News new | ask | show | jobs
by dash2 34 days ago
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”)

?
2 comments

Or maybe

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

Is this a joke?