Skip to contents

Reads a CSV/TSV/XLSX file and returns a standardized data frame.

Usage

authordown_read_local(path, sheet = NULL, validate = TRUE)

Arguments

path

Path to a local CSV, TSV, or XLSX file.

sheet

Optional sheet name or index for XLSX files.

validate

Logical. If TRUE, validate the data.

Value

A data frame with standardized columns.

Examples

if (FALSE) { # \dontrun{
authors <- authordown_read_local("authors.csv")
} # }