fread()
is a simple wrapper around data.table::fread()
that returns a tidytable
instead of a data.table.
fread(...)
Arguments passed on to data.table::fread
fake_csv <- "A,B
1,2
3,4"
fread(fake_csv)
#> # A tidytable: 2 × 2
#> A B
#> <int> <int>
#> 1 1 2
#> 2 3 4