Downloads raw CAASPP Smarter Balanced assessment research files from the ETS CAASPP portal. Data includes test results for grades 3-8 and 11 in ELA and Mathematics.
Value
List containing:
test_data: Data frame with assessment resultsentities: Data frame with entity names and codesyear: School yearsource_url: URL where data was downloaded
Details
Available Years:
2015-2019: Pre-COVID baseline data
2020: No statewide testing (COVID-19)
2021: Limited data due to pandemic
2022-2025: Full post-pandemic data
See also
process_assess for processing raw data
fetch_assess for the complete fetch pipeline
Examples
if (FALSE) { # \dontrun{
# Download 2024 CAASPP data (both ELA and Math)
raw_2024 <- get_raw_assess(2024)
# Download only ELA results
raw_2024_ela <- get_raw_assess(2024, subject = "ELA")
# Download with student group breakdowns
raw_2024_groups <- get_raw_assess(2024, student_group = "GROUPS")
# Access test results and entity names
test_data <- raw_2024$test_data
entities <- raw_2024$entities
} # }