When reading file from ~25G file:
data <- fread(in_path)
I get this:
"Error in fread(in_path) : embedded nul in string: '\\0\\0\\0\\0\\0'\n"
If I do this:
fread(paste("sed 's/\\0//g'", in_path)
The error goes away. I'm worried about doing this without understanding why it works. Should I be worried my data is corrupted? Any way to tell if that is the case? Thanks.