Skip to contents

Imports school directory data from a locally saved file. Use this function when automatic downloads from Montana OPI are not available. Download data manually from the OPI Reporting Center and save locally.

Usage

import_local_directory(file_path, tidy = TRUE)

Arguments

file_path

Path to the local directory data file (CSV, XLSX, or XLS)

tidy

If TRUE (default), processes data to standard schema.

Value

Tibble with school directory data

Examples

if (FALSE) { # \dontrun{
# After downloading directory data from OPI:
data <- import_local_directory("~/Downloads/MT_Schools_Directory.xlsx")
} # }