Downloads and combines assessment data for multiple school years. Note: 2020 is automatically excluded (COVID-19 testing waiver).
Examples
if (FALSE) { # \dontrun{
# Get 3 years of data
assess_multi <- fetch_assessment_multi(2022:2024)
# Track ELA proficiency trends at state level
assess_multi |>
dplyr::filter(is_state, subject == "ELA", grade == "3-8",
subgroup_name == "All Students", is_proficient) |>
dplyr::group_by(end_year) |>
dplyr::summarize(pct_proficient = sum(pct, na.rm = TRUE))
} # }