We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In readr 0.1.1, read_csv does the following:
# with readr 0.1.1 file <- "X1\n1\n2\n2X" read_csv(file) # Source: local data frame [3 x 1] # # X1 # (chr) #1 1 #2 2 #3 2X
But in readr 0.2.2, read_csv does something unexpected:
# with readr 0.2.2 file <- "X1\n1\n2\n2X" read_csv(file) # Source: local data frame [3 x 1] # # X1 # (dbl) #1 1 #2 2 #3 2
Seems like the 2X should have been NA if it thought it was a numeric column. Subbing it to 2 could be dangerous.
The text was updated successfully, but these errors were encountered:
Hmmm, the numeric guesser is being too aggressive. I'll have another look at it.
Sorry, something went wrong.
Duplicate of #308
No branches or pull requests
In readr 0.1.1, read_csv does the following:
But in readr 0.2.2, read_csv does something unexpected:
Seems like the 2X should have been NA if it thought it was a numeric column. Subbing it to 2 could be dangerous.
The text was updated successfully, but these errors were encountered: