prevent error on bad rows
When one row of a file is bad, currently the whole parsing fails.
Pandas allows to set the on_bad_lines
flag, that allows to either cause an 'error'
, 'warn'
or 'skip'
in case of a line it can not parse correctly.
We should set the default as on_bad_lines='warn'