Learn R Programming

edbuildr (version 0.3.0)

masterpull: A function to import EdBuild's master dataset

Description

This function allows you to read in EdBuild's master dataset for the years 2013- 2019. The master dataset is a compilation of national level school district data from the US Census Annual Survey of School System Finances (F33); US Census Small Area Income and Poverty Estimates (SAIPE); National Center for Education Statistics (NCES) Common Core of Data (CCD); and Education Demographic and Geographic Estimates (EDGE). Cost adjustments were calculated using C2ER.

Usage

masterpull(data_year = "2019", data_type = "gen", disaggregated =
  FALSE)

Arguments

data_year

Four digit year of master data to pull in. Options include 2013- 2019. Defaults to 2019.

data_type

Type of master data to pull in

  • geo pulls in all school districts that have physical school district boundaries. To be used for map-based analysis and other analyses that pertain to school districts with geographic boundaries. For instance, an analysis using median owner-occupied property value would use the geography exclusion.

  • fin pulls in all school districts that meet EdBuild<U+2019>s criteria for financial analysis. To be used for finance analysis.

  • gen pulls in all school districts that meet enrollment and district type requirements. To be used for all other, non-finance analysis.

  • full pulls in all school districts in the given year. To be used with great care, or to find a district that does not appear in any other exclusion, for example charter school districts.

Defaults to gen

disaggregated

For the full, general, and finance exclusions in 2019, users have the option to view disaggregated Vermont school district data without EdBuild's aggregation processing.

Value

A dataframe where each observation is a school district.

Format

A data frame with 42 variables. To view descriptions of variable names and sources for each use master_codebook()

See Also

master_codebook, long_masterpull

Examples

Run this code
# NOT RUN {
master19_geo <- masterpull("2019", data_type = "geo")
# }

Run the code above in your browser using DataLab