Last active
August 21, 2016 16:09
-
-
Save dgrtwo/527045ccdb06ac5754333f44c9c831a7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grouply <- function(f, ...) { | |
groups <- lazyeval::lazy_dots(...) | |
function(tbl, ...) { | |
dplyr::group_by_(tbl, .dots = groups) %>% | |
f(...) %>% | |
dplyr::ungroup() | |
} | |
} | |
mtcars %>% grouply(mutate, cyl, am)(n = n()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment