Imports a LEAP assessment Excel file that was downloaded manually.
Use this when the automatic download is blocked by Cloudflare.
Usage
import_local_assessment(file_path, end_year)
Arguments
- file_path
Path to the downloaded Excel file
- end_year
School year end (for labeling)
Value
Data frame with assessment data
Details
To download the file manually:
Visit https://doe.louisiana.gov/data-and-reports/elementary-and-middle-school-performance
Download the LEAP mastery summary file for your desired year
Pass the file path to this function
Examples
if (FALSE) { # \dontrun{
# Download file manually, then import
assess <- import_local_assessment(
"~/Downloads/2024-state-lea-leap-2025-mastery-summary.xlsx",
end_year = 2024
)
} # }