Skip to contents

Ingest "EmploymentEducation.csv" file and perform ETL prep for "EMPLOYMENT" database table

Usage

read_employment(file)

Arguments

file

String, the full path to the .csv file

Value

A data frame, containing the transformed data to be written out to the "EMPLOYMENT" database table

Examples

if (FALSE) { # \dontrun{

path <- "path/to/EmploymentEducation.csv"

read_employment(
    file = path
)
} # }