Created
January 20, 2018 13:23
-
-
Save mbannert/8a232bd7c8bdbfd6bdf6ebccfc35aa70 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
dpl_gr <- function(ds,vars){ | |
ds %>% | |
group_by_(.dots = vars) %>% | |
summarise(n = n()) %>% | |
mutate(freq = n / sum(n)) | |
} | |
dpl_gr(mtcars,c("am","cyl")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment