Learn R Programming

edbuildr (version 0.3.0)

f33pull: A function to import and process F33 data

Description

This function imports the US Census, Annual Survey of School System Finances (F33) data with standard EdBuild processing steps applied to revenues.

Usage

f33pull(data_year = "2019", path=NULL, additional_var=NULL, keep_calcs=FALSE)

Arguments

data_year

Four digit year of F33 data you would like to pull. Available for 2006-2019.

path

Path name of F33 file if data is stored on local computer. Defaults to NULL to pull in F33 data from EdBuild's server.

additional_var

List any additional F33 variables you would like to pull.

keep_calcs

Do you want to keep all of the variables used to calculate adjusted revenues? Defaults to FALSE.

Value

A dataframe where each observation is a school district.

Format

A data frame with 14 variables:

year

data year

State

State name

STATE_FIPS

State code

NCEISD

NCES school district ID

NAME

School district name

CONUM

County number

ENROLL

School district enrollment

TFEDREV

Total federal revenue- no EdBuild adjustments

LOCREV_adj

Local revenue - with EdBuild adjustments

LOCREV_adj_PP

Local revenue per pupil- with EdBuild adjustments

STREV_adj

State revenue - with EdBuild adjustments

STREV_adj_PP

State revenue per pupil - with EdBuild adjustments

STLOCREV_adj

State and local revenue - with EdBuild adjustments

STLOCREV_adj_PP

State and local revenue per pupil - with EdBuild adjustments

See Also

f33pull_raw

Examples

Run this code
# NOT RUN {
f33_2019 <- f33pull(data_year="2019",
                    additional_var=c("V40", "TCAPOUT"),
                    keep_calcs=FALSE)
# }

Run the code above in your browser using DataLab