Skip to contents

Reads one or more Part VII compensation CSVs (as returned by fetch_partvii()) into a single data frame. All columns are read as character to preserve raw IRS values; standardize_df() handles type coercion downstream. Multiple files are row-bound.

Usage

read_partvii(path, verbose = TRUE)

Arguments

path

Character vector of local file paths (from fetch_partvii()), or a single directory to read all *.CSV files from.

verbose

Print progress messages. Default TRUE.

Value

A data frame with the raw Part VII schema, ready for standardize_df().

Examples

if (FALSE) { # \dontrun{
d <- read_partvii( fetch_partvii( 2023 ) )
} # }