I have a .csv where a column of IDs contains a long integer with leading zeros. fread
converts it into an integer64
type. How would I specify the class for one column and then just let fread
automatically guess the classes for the remaining columns? Not sure if this is an "all-or-nothing" type of situation.
I have 50+ columns and would rather not have to specify the data types for all of them just because I have to do so for one of them.
My question is related to: R fread - read all columns as character.