Stop CSV Reader from column type auto detection

You additionally could use R’s readr to force all columns to string

Another possibility would be to read the data with the “Fixed Width File Reader” including the column names forcing all columns to be read as strings (you would have to set a width large enough to cover your data), split the cells by the delimiter.

Later you could reuse the first line and insert the column headers again. I think something like this has been discussed before:

1 Like