Use readr::read_delim()
without specifying any column types. All columns
are treated as character strings.
read_delim_dumb(file, delim = c(",", "\t", "|"), ...)
read_csv_dumb(file, ...)
read_tsv_dumb(file, ...)
Either a path to a file, a connection, or literal data.
Single character used to separate fields within a record.
Additional arguments passed to readr::read_delim()
.
A tibble data frame read from the file.