Skip to content

Instantly share code, notes, and snippets.

@keithmcnulty
Created July 16, 2020 11:39
Show Gist options
  • Select an option

  • Save keithmcnulty/32c4f9dc7826fd06d468b99fe87ac716 to your computer and use it in GitHub Desktop.

Select an option

Save keithmcnulty/32c4f9dc7826fd06d468b99fe87ac716 to your computer and use it in GitHub Desktop.
mtcars %>%
nest_by(cyl)
#> # A tibble: 3 x 2
#> # Rowwise: cyl
#> cyl data
#> <dbl> <list<tbl_df[,10]>>
#> 1 4 [11 × 10]
#> 2 6 [7 × 10]
#> 3 8 [14 × 10]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment