A comparison of high-performance computing techniques in R
When it comes to speeding up "embarassingly parallel" computations (like for loops with many iterations), the R language offers a number of options: An R looping operator, like mapply (which runs in a single thread) A parallelized version of a looping operator, like mcmapply (which can use multiple cores) Explicit ... [Read more...]