I have 200 tsv documents to import
I use code
list_file <- list.files(pattern = "*.tsv")
read.all <- lapply(list_file, read.table,header=TRUE, sep="\t",na.strings = c(""," "), fill = TRUE)
It provides warning as EOF within quoted string to import
At first I tought it is warning so I moved on, the structure of data is find. But when I check the number of rows in last few lists, I found it didn't import all rows from those tsv documents. It seems nothing wrong with my data. Because I imported a single tsv file that imported incompletely with lapply function and it was imported successfully without losing any information
Since I can't monitor which file was not import appropriately, and I can't trust I have all information I need. Can any one help to provide suggestions?
Maybe provide a method that may slow but without errors? Many thanks.