-
Notifications
You must be signed in to change notification settings - Fork 285
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
suggest to change default quote parameter for tsv #844
Comments
This seems reasonable to me, do you have an opinion @hadley? |
Hmmm, I'd be slightly concerned about breaking existing code, but it seems like it should be ok. |
@jimhester I think this issue also impacts |
@jimhester @hadley would you consider a pull request on this topic? |
@cboettig there is now a escape_na option for the |
In IANA's definition of TSV at https://www.iana.org/assignments/media-types/text/tab-separated-values , no mention is made of string quoting. In fact, the reason for the use of TSV was to avoid having to deal with confusing string quoting at all by simply stating the tab character may not be used in the values of fields.
Currently, the default value of "quote" parameter in readr::read_tsv is
\"
.To follow the spirit of TSV, suggest to change the default value of the "quote" parameter in readr:read_tsv (and accompanying methods) to an empty value.
The text was updated successfully, but these errors were encountered: