Issues reading big CSV file despite using CSV.Row

I found a workaround through R, in case someone runs into the same problem:

using RCall
x = reval("read.delim('/folder/file_path')")
df = rcopy(x)

gives a dataframe as expected.

(substitute “/folder/file_path” with your file’s file location. dont forget the ’ '!)