Load a csv file with read.csv and read_csv
loadcsv(fn, .csv = FALSE, header = TRUE, sep = ",", dec = ".",
n_max = Inf, saf = TRUE, safx = 20)
File name string
Use read.csv instead of read_csv to load file (default is FALSE)
Header in file (TRUE, FALSE)
Use , (default) or ; or \t
Decimal symbol. Use . (default) or ,
Maximum number of rows to read
Convert character variables to factors if (1) there are less than 100 distinct values (2) there are X (see safx) more values than levels
Values to levels ratio
Data frame with (some) variables converted to factors