Convenience function to fetch assessment data for a single district.
Usage
fetch_district_assessment(
end_year,
district_id,
assessment_type = "all",
tidy = TRUE,
use_cache = TRUE
)
Arguments
- end_year
School year end
- district_id
District ID (e.g., "601" for Appling County)
- assessment_type
One of "all" (default), "eog", or "eoc"
- tidy
If TRUE (default), returns tidy format
- use_cache
If TRUE (default), uses cached data
Value
Data frame filtered to specified district
Examples
if (FALSE) { # \dontrun{
# Get Fulton County (district 660) assessment data
fulton_assess <- fetch_district_assessment(2024, "660")
# Get Atlanta Public Schools (district 799) data
atlanta_assess <- fetch_district_assessment(2024, "799")
} # }