I would like to read tab-delimited-files with readr::read_tsv
.
The files have columnheaders for all columns, except for the first column which header is empty.
The data in the first column contains mixed datatypes (numbers and text).
How can i force readr to read the first column as character and guess all other columns?
Thanks a lot!