Earlier quoted context omitted.
I haven't heard of queryverse, thank you for that. This also brings up a good point I wanted to highlight. I get that Julia is a young language with a growing ecosystem. But the lack of "one obvious way to do something" may scare new users away. "I want to quickly wrangle data. Do I use Query.jl, DataFramesMeta.jl, SplitApplyCombine.jl or something else?" "I need pipes to help me wrangle data more efficiently do I us…
> For a new R user it seems so much simpler: > 1. run "library(dplyr)" 2. Google "how to XYZ in dplyr" 3. ??? 4. Profit I beg to differ here. There’s much to be said for using data.table and base R instead of the tidyverse. This article is worth a read in my view: https://github.com/matloff/TidyverseSkeptic
They are an 80% solution for a lot of data analytic needs, but base-R is 100% the right choice if you want your code to run for a long time without needing updates.
I've never really gotten into data.table for some reason, normally dplyr is fast enough, or I'm using something more efficient than R.