I have a large file (3.5G) that I\'m trying to import using data.table::fread.
data.table::fread
It was originally created from an rpt file that was opened as text and sa
In this case, you can use read.csv with fileEncoding of UTF-16LE rather than fread.
read.csv
fread
read.csv("mycsv.csv",fileEncoding="UTF-16LE")
Considering your data size, using read.csv would take a couple of minutes, but I think it is not a big deal.