tidyverse / multidplyr

A dplyr backend that partitions a data frame over multiple processes
https://multidplyr.tidyverse.org
Other
641 stars 75 forks source link

Suppport rowwise #140

Open latot opened 2 years ago

latot commented 2 years ago

Hi, I think would be great support rowwise operation from dplyr.

Thx!

hadley commented 11 months ago

Thanks for the suggestion! Will definitely consider it when I'm next working on multidplyr.

steveharoz commented 6 months ago

A simple workaround for anyone who needs rowwise():

my_multi_df |>
  # instead of rowwise(), make these two calls:
  mutate(row = 1:n()) |>
  group_by(row)