Skip to contents

Downloads and returns Georgia Milestones assessment data from GOSA. Includes both EOG (End of Grade) and EOC (End of Course) assessments.

Usage

fetch_assessment(
  end_year,
  assessment_type = "all",
  tidy = TRUE,
  use_cache = TRUE
)

Arguments

end_year

School year end (2023-24 = 2024). Valid range: 2015-2024 (no 2020).

assessment_type

One of "all" (default), "eog", or "eoc"

tidy

If TRUE (default), returns data in long format with proficiency_level column. If FALSE, returns wide format with separate pct_* columns.

use_cache

If TRUE (default), uses locally cached data when available.

Value

Data frame with assessment data

Details

Georgia Milestones began in spring 2015, replacing the CRCT. No data available for 2020 due to COVID-19 testing waiver.

Examples

if (FALSE) { # \dontrun{
# Get 2024 assessment data (EOG + EOC)
assess_2024 <- fetch_assessment(2024)

# Get only EOG (End of Grade) data
eog_data <- fetch_assessment(2024, assessment_type = "eog")

# Get wide format (pct columns not pivoted)
assess_wide <- fetch_assessment(2024, tidy = FALSE)

# Force fresh download
assess_fresh <- fetch_assessment(2024, use_cache = FALSE)
} # }