You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Error in fread(f) : # Field 48 on line 767 starts with quote (") but then has a problem. It can contain balanced unescaped quoted subregions # but if it does it can't contain embedded \n as well. Check for unbalanced unescaped quotes: # ""A"" ST , , , ,25,25, , ,# N, ,614
Thanks for the report. quote = "" is implemented. Either use that, or wrap your file with "" around character columns so that quote = "\"" can then read it properly. See ?fread quote argument.
sample data available here: http://www.state.nj.us/transportation/refdata/accident/2013/Monmouth2013Accidents.zip
Offending line (767 in linked file) has the following value:
""A"" ST
Compare to read.table:
possibly related to #1077.
The text was updated successfully, but these errors were encountered: