Speed up your R code
This short post is to share an R tip Pierre recently gave me. When you need to store values sequentially (typically inside a loop), itβs more far efficient to create the whole vector (or matrix) and to fill it, rather than to concatenate the values to your current vector (... [Read more...]