Is it possible to combine multidplyr
and dtplyr
? Are there any examples of recommended patterns?
It's not clear to me if I should be calling collect()
after my multidplyr
pipeline or do I call as_tibble()
to signal I'm done with the transformations to dtplyr
(or should I be doing both)?
Related: is there a consensus on when I should be looking to use furrr
versus multidplyr
?