Downloads and processes enrollment data for New Hampshire public schools. Data is sourced directly from the New Hampshire Department of Education iPlatform reporting system.
Arguments
- end_year
A school year. Year is the end of the academic year - eg 2023-24 school year is year '2024'. Run get_available_years() to see available years.
- tidy
If TRUE (default), returns data in long (tidy) format with subgroup column. If FALSE, returns wide format.
- use_cache
If TRUE (default), uses locally cached data when available. Set to FALSE to force re-download.
Value
Data frame with enrollment data. Wide format includes columns for district_id, campus_id, names, and enrollment counts by grade. Tidy format pivots these counts into subgroup and grade_level columns.
Examples
if (FALSE) { # \dontrun{
# Get 2024 enrollment data (2023-24 school year)
enr_2024 <- fetch_enr(2024)
# Check available years
get_available_years()
# Get wide format
enr_wide <- fetch_enr(2024, tidy = FALSE)
# Force fresh download (ignore cache)
enr_fresh <- fetch_enr(2024, use_cache = FALSE)
# Filter to specific district
manchester <- enr_2024 |>
dplyr::filter(grepl("Manchester", district_name))
} # }