df <- tidytable(
a = 1:3,
b = 1:3,
c = c("a", "a", "b"),
d = c("a", "a", "b")
)
df %>%
group_split(c, d)
df %>%
group_split(c, d, .keep = FALSE)
df %>%
group_split(c, d, .named = TRUE)
Run the code above in your browser using DataLab