fread {tidytable} | R Documentation |
Read/write files
Description
fread()
is a simple wrapper around data.table::fread()
that returns a tidytable
instead of a data.table.
Usage
fread(...)
Arguments
... |
Arguments passed on to |
Examples
fake_csv <- "A,B
1,2
3,4"
fread(fake_csv)
[Package tidytable version 0.11.1 Index]