I have a very large For Loop that I need to run in R (10 million rows). Would it generally be faster to loop through 5 million rows concurrently in two separate R windows or would it be faster to run the loop on all 10 million rows in a single R window?
Would two separate R windows take advantage of any sort of parallel processing?
For the purposes of this question, I do not want to use lapply.