data-science

Data science, data analysis, and machine learning in Clojure https://scicloj.github.io/pages/chat_streams/ for additional discussions
Santiago 2020-01-20T20:04:34.022400Z

rstats peeps, is there a nice equivalent of clojure’s (thread & body) in R? I’ve never read that much about concurrent async in R. I know there are promises but didn’t go deep. Looking for any shortcuts you can offer me ;D

2020-01-21T16:24:18.023Z

I would say no, not really. There is syntax for thread-first via the magrittr package. (https://magrittr.tidyverse.org/) and various approaches to concurency (e.g. https://stat.ethz.ch/R-manual/R-devel/library/parallel/html/mclapply.html)

👍 1