An opinionated view of the Tidyverse “dialect” of the R language
1–10 of 156 posts
Re: An opinionated view of the Tidyverse “dialect” of the R language
#2Re: An opinionated view of the Tidyverse “dialect” of the R language
#3I enjoy base-R solutions where I can. I use data.table when my data sets are medium-ism. But like most people, my data is small and people just call it big and thus the attraction to dplyr in particular. Those chained pipes are addicting.
Always love seeing R discussion on HN, seems to be taboo though (not a 'real' language and all that).
Re: An opinionated view of the Tidyverse “dialect” of the R language
#4Re: An opinionated view of the Tidyverse “dialect” of the R language
#5Decent critiques in my opinion. I was trained on/learned base-R myself ~10 years ago and love the "tidyverse" (although the author is correct, data.table is superior for big data and its not particularly close). Can't imagine people that only know tidyr/dplyr/etc without knowing base-R, seems like those people would get exposed quickly. I enjoy base-R solutions where I can. I use data.table when my data sets are medi…
- is based on scheme, a HN favourite;
- integrates very well with C++ through RCpp allowing you to do whatever you want. 9/10 times someone already went through the trouble for you.
Re: An opinionated view of the Tidyverse “dialect” of the R language
#6Re: An opinionated view of the Tidyverse “dialect” of the R language
#7Decent critiques in my opinion. I was trained on/learned base-R myself ~10 years ago and love the "tidyverse" (although the author is correct, data.table is superior for big data and its not particularly close). Can't imagine people that only know tidyr/dplyr/etc without knowing base-R, seems like those people would get exposed quickly. I enjoy base-R solutions where I can. I use data.table when my data sets are medi…
I don’t even understand the not a real language critique, R: - is based on scheme, a HN favourite; - integrates very well with C++ through RCpp allowing you to do whatever you want. 9/10 times someone already went through the trouble for you.
Re: An opinionated view of the Tidyverse “dialect” of the R language
#8I have been using data.table from almost day one, it does worth more recognition. The syntax is a little bit hard in the beginning but can be grasped after some efforts. I often feel that my exploration code will be much more tedious look if written in dplyr style.
Re: An opinionated view of the Tidyverse “dialect” of the R language
#9Re: An opinionated view of the Tidyverse “dialect” of the R language
#10Decent critiques in my opinion. I was trained on/learned base-R myself ~10 years ago and love the "tidyverse" (although the author is correct, data.table is superior for big data and its not particularly close). Can't imagine people that only know tidyr/dplyr/etc without knowing base-R, seems like those people would get exposed quickly. I enjoy base-R solutions where I can. I use data.table when my data sets are medi…
I don’t even understand the not a real language critique, R: - is based on scheme, a HN favourite; - integrates very well with C++ through RCpp allowing you to do whatever you want. 9/10 times someone already went through the trouble for you.