read_delim_dumb {k5} | R Documentation |
Read a text file without column guessing
Description
Use readr::read_delim()
without specifying any column types. All columns
are treated as character strings.
Usage
read_delim_dumb(file, delim = c(",", "\t", "|"), ...)
read_csv_dumb(file, ...)
read_tsv_dumb(file, ...)
Arguments
file |
Either a path to a file, a connection, or literal data. |
delim |
Single character used to separate fields within a record. |
... |
Additional arguments passed to |
Value
A tibble data frame read from the file.
[Package k5 version 0.2.1 Index]