Pivots enrollment data from wide format (one column per grade) to long format with a grade column. Also handles the reporting_category column which already contains demographic subgroups.
Examples
if (FALSE) { # \dontrun{
# Get wide format and then tidy
wide <- fetch_enr(2024, tidy = FALSE)
tidy <- tidy_enr(wide)
} # }