Skip to contents

Ingest "Client.csv" file and perform ETL prep for "CLIENT" database table

Usage

read_client(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 "CLIENT" database table

Examples

if (FALSE) { # \dontrun{

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

read_client(
    file = path
)
} # }