powered by
Calculates summary statistics for ENEM scores, optionally grouped by demographic variables.
enem_summary(data, by = NULL)
A tibble with summary statistics for each score area.
A tibble with ENEM data (from get_enem()).
get_enem()
Optional grouping variable(s) as character vector.
if (FALSE) { enem <- get_enem(2023, n_max = 10000) # overall summary enem_summary(enem) # summary by sex enem_summary(enem, by = "tp_sexo") }
Run the code above in your browser using DataLab