I have the following tab-delimited file that read_delim
seems to fail because of the quotation mark.
8436127 "Baki-Pilsen" Brewery "Baki-Pilsen" Brewery 40.32864 49.78044 P PPLL AZ 0 -25 Asia/Baku 2012-12-17
(pastebin link to preserve tabs: http://pastebin.com/ZKkAZ9Fr)
read_tsv("read_delim_fail.txt", col_names = FALSE) # Fail to parse
This is especially puzzling because read_delim
, read_tsv
already specify quote = "\t"
. What does it fail to parse?