Skip to contents

Find rawdata and load it into memory for further process. It requires the class attribute of the file is set prior to using find_data() method. Otherwise, use read_file() function instead unless you have specific reason not to.

Usage

find_data(file = NULL, ...)

Arguments

file

Input file

...

Other options relevant to the file type

Examples

if (FALSE) { # \dontrun{
file <- "path/to/my-data.csv"
class(file) <- "csv"
dt <- find_data(file)
} # }