Learn R Programming

filecacher (version 0.2.9)

get_csv_read_fn: Get the first CSV Read function installed

Description

Get the first CSV Read function installed

Usage

get_csv_read_fn(read_type = NULL)

Value

Function that reads multiple paths to CSVs.

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.