Skip to contents

Read a file into a data table, with a log

Usage

fread(...)

Arguments

...

All arguments of data.table::fread().

Value

The data table that data.table::fread() returns.

Examples

fread(text = "a,b\n1,2\n3,4")
#> fread: read 2 rows and 2 columns
#>        a     b
#>    <int> <int>
#> 1:     1     2
#> 2:     3     4