read_section.RdReads an unzipped CDC vital statistics fixed-width file into a tibble, using a metadata table from this package to define the column positions, widths, and names. All columns are read as character to avoid silent coercion of coded numeric fields.
read_section(data_file, meta)A tibble with one row per death record and one column per field
defined in meta. All columns are character type — use
decode_preview() to decode coded fields into human-readable labels.
if (FALSE) { # \dontrun{
meta <- data_mortality_multiple_1969
mort1969 <- read_section(data_file, meta)
} # }