Skip to contents

Reads a CSV file into a tidylearn_data object. Uses readr when available for faster parsing, with a base R fallback.

Usage

tl_read_csv(path, ...)

Arguments

path

Path to a CSV file.

...

Additional arguments passed to readr::read_csv() or utils::read.csv().

Value

A tidylearn_data object (a tibble subclass) with attributes tl_source, tl_format, and tl_timestamp.

Examples

# \donttest{
# data <- tl_read_csv("path/to/data.csv")
# }