1

As the title suggest, I am confused about what is the difference between both package as they are both used in parallel computing in R.

Lewis Wong
  • 93
  • 10

1 Answers1

0

foreach can execute using either %do% or %dopar% ... it only runs in parallel with %dopar%

More information available here: https://cran.r-project.org/web/packages/foreach/vignettes/foreach.pdf

johnjps111
  • 1,160
  • 9
  • 24