Skip to content

Instantly share code, notes, and snippets.

@grayskripko
Created February 15, 2022 10:54
Show Gist options
  • Save grayskripko/dbce44819e71b4ca307b4ce7bb3a6f19 to your computer and use it in GitHub Desktop.
Save grayskripko/dbce44819e71b4ca307b4ce7bb3a6f19 to your computer and use it in GitHub Desktop.
tidyverse rowwise cases
tbl %>%
rowwise() %>%
group_map(~{...})
tbl %>%
mutate(i=1:n()) %>%
nest(data=-i) %>%
pluck('data') %>%
map(~{...})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment