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
Submitted by: Ananda Mahto; Assigned to: Nobody; R-Forge link
When trying to read data separated by a ., fread yields an error with consecutive numeric values, for example:
.
fread
library(data.table) packageVersion("data.table") # [1] ‘1.8.10’ y <- paste("192.168.1.", 1:10, sep = "") notworking <- tempfile() writeLines(y, notworking) fread(notworking, sep = ".", header = FALSE)
The following examples work:
z1 <- paste("192. 168. 1. ", 1:10, sep = "") working1 <- tempfile() writeLines(z1, working1) fread(working1, sep = ".", header = FALSE) z2 <- paste("Hz.BB.GHG.", 1:10, sep = "") working2 <- tempfile() writeLines(z2, working2) fread(working2, sep = ".", header = FALSE)
See this SO post.
The text was updated successfully, but these errors were encountered:
0afc547
mattdowle
No branches or pull requests
Submitted by: Ananda Mahto; Assigned to: Nobody; R-Forge link
When trying to read data separated by a
.
,fread
yields an error with consecutive numeric values, for example:The following examples work:
See this SO post.
The text was updated successfully, but these errors were encountered: