get_csv_read_fn {filecacher} | R Documentation |
Get the first CSV Read function installed
Description
Get the first CSV Read function installed
Usage
get_csv_read_fn(read_type = NULL)
Arguments
read_type |
Type of csv read function to use. One of:
"readr": readr::read_csv()
"arrow": vectorize_reader(arrow::read_csv_arrow)()
"data.table": vectorize_reader(data.table::fread)()
"base": vectorize_reader(utils::read.csv)()
-
NULL (default): uses the first installed.
|
Value
Function that reads multiple paths to CSVs.
[Package
filecacher version 0.2.9
Index]