-
Notifications
You must be signed in to change notification settings - Fork 286
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
Consider promotion of integer -> double tokenizers #652
Comments
jimhester
added a commit
to jimhester/readr
that referenced
this issue
Apr 24, 2017
jimhester
added a commit
that referenced
this issue
Apr 26, 2017
We no longer guess integer columns by default, so I am closing this. |
This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/ |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
For certain numeric columns, it's possible that the first entries are representable as integer, with only the later entries being representable as double. In such a case, calls to
read_csv()
can fail as the inferred integer tokenizer will fail to tokenize those later entries.Would it be possible for
readr
to instead just promote the tokenizer from integer to double on the fly in such a case?The text was updated successfully, but these errors were encountered: