Last active
August 6, 2019 19:02
-
-
Save jsaraviadrago/680cb0c8065db5f58db41f9fda1af31e to your computer and use it in GitHub Desktop.
This file contains 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
### Tabla de sedes de 5 años con estudiantes de 5 años | |
#' @param data para ser usada | |
#' @param ... variables que uno utiliza para agregar y hacer la tabla | |
table5 <- function(data,...){ | |
tabla <- data %>% | |
group_by(...) %>% | |
summarise(n=n()) %>% | |
mutate(PORCENTAJE = round(n/sum(n)*100,1), | |
ETIQUETA = paste0(round(n/sum(n)*100,1),"%")) | |
tabla <- data.frame(tabla) | |
return(tabla) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment