Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upplyr forces .progress="none" when .parallel=TRUE (although it works with progressr) #70
Comments
|
Created PR hadley/plyr#301 to fix this in plyr. |
Unfortunately, the plyr package ignores the
.progressargument whenever.parallel = TRUE. It does this by forcing.progress = "none", e.g. inplyr::llply()there is:This is probably based on the assumption that progress updates do not work in parallel processing. However, that does indeed work when using future + progressr. Here's an example of this when we hack plyr to still use
.progress = "progressr"internally:which outputs:
and when done: