-
Notifications
You must be signed in to change notification settings - Fork 999
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
[R-Forge #4724] add quote = argument to fread #568
Comments
It would save me so much time if this would be ever implemented |
I would also like to see this feature. Thanks in advance. |
Seconding this request. Working with intermediary data frames really isn't an optimal solution... |
+1 |
Closed the wrong issue.. argghhhh |
yes, would certainly like to see quote handling in fread. it will surely help a great deal! thanks. |
Thanks for the report. More robust handling of quotes now in devel. Please upgrade and test. |
"quote" in still missing data.table vignette under fread command cran.r-project.org/web/packages/data.table/data.table.pdf or in git rdocumentation.org/packages/data.table/versions/1.9.6/topics/…? Is this enhancement slated for 1.9.7 or am I missing something? |
1.9.7 is the development version under current release, and yes On Oct 5, 2016 9:44 AM, "AbhishekSinghVerma" [email protected] "quote" in still missing data.table vignette under fread command — |
@AbhishekSinghVerma you can find pretty up to date 1.9.7 fread manual here. |
Submitted by: Ben Marwick; Assigned to: Nobody; R-Forge link
I love fread for its speed, but I have some huge CSV files that are poorly formed and can't load into R without something like:
read.csv("my.csv", row.names = NULL, comment.char = "", header = TRUE,
stringsAsFactors = FALSE, colClasses= "character", encoding="utf-8",
quote = "")
I can't see an equivalent for fread except a note in the doc that says it's a known issue and not yet implemented.
I eagerly await the day of the implementation of quote handling!
thanks for all your amazing work on this package,
Ben
The text was updated successfully, but these errors were encountered: