fread {tidytable} | R Documentation |
fread()
is a simple wrapper around data.table::fread()
that returns a tidytable
instead of a data.table.
fread(...)
... |
Arguments passed on to |
fake_csv <- "A,B
1,2
3,4"
fread(fake_csv)