I have loaded fread
like so:
install.packages('data.table')
require(data.table)
It loads the first half of my 3GB TSV file very quickly with the following code:
> train <- fread("avito_train.tsv")
Read 55.6% of 3995803 rows
Error in fread("avito_train.tsv") :
However, when it get's to 55.6%, it says that there is an error but it doesn't say what. How can I get the error? Is it possible to just skip the rows that it errors on?
Note: The data is available on Kaggle.com if you wish to try it out for yourself http://www.kaggle.com/c/avito-prohibited-content/data