Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. library(foreach)
  2. library(doFuture)
  3.  
  4. registerDoFuture()
  5. plan(multicore, workers=12)
  6.  
  7. result <- foreach(i=1:N, .combine=c) %dopar% {
  8. myfunction(mydata[[i]])
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement