fread EOF instead of separator

后端 未结 2 824
无人及你
无人及你 2021-01-16 06:43

I\'m trying to read a huge file with fread, but i guess something is messed with the layout of the file.

If i try to read the file with

data = fread(         


        
2条回答
  •  春和景丽
    2021-01-16 06:55

    Add fill = TRUE in the syntax

    What's happening: The rows in the data have unequal length. With this syntax, blank fields are implicitly filled.

提交回复
热议问题