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
Dear developers thanks for the amazing work. However, I encountered a weird behavior from readr which seems to invent decimals:
readr
library(readr) cat("VPD\n0.852402144876029", file = "test_in.txt") read_tsv("test_in.txt") %>% write_tsv(file = "test_out.txt") readLines("test_out.txt") # [1] "VPD" "0.85240214487602906"
I'm using readr 2.1.4
The text was updated successfully, but these errors were encountered:
This issue is not occurring with base:
cat("VPD\n0.852402144876029", file = "test_in.txt") read.delim("test_in.txt", sep = "\t") %>% write.table(file = "test_out.txt", sep = "\t", quote = FALSE, row.names = FALSE) readLines("test_out.txt")
And occurs only for few specific values.
Sorry, something went wrong.
It might be related to issue #1502 I just reported.
Duplicate of #1502
No branches or pull requests
Dear developers thanks for the amazing work. However, I encountered a weird behavior from
readr
which seems to invent decimals:I'm using readr 2.1.4
The text was updated successfully, but these errors were encountered: