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: Roby Joehanes; Assigned to: Nobody; R-Forge link
Suppose the first line of a 5-column flat CSV file is as follows:
,Col1,Col2,Col3,Col4
This line is skipped in v1.9.2, and so the data file has no column header (only V1,V2,...,V5). This has not been a problem in v1.8.10.
v1.9.2
v1.8.10
The text was updated successfully, but these errors were encountered:
Got into that also. Used to work. now silently ignoring the headers even if header = TRUE.
Sorry, something went wrong.
In v1.9.5, I get this:
v1.9.5
fread(",Col1,Col2,Col3,Col4\na,b,c,d,e\n1,2,3,4,5", verbose=FALSE) # V1 Col1 Col2 Col3 Col4 # 1: a b c d e # 2: 1 2 3 4 5
Could you please verify this and write back as well, @kforner ? Thanks.
mattdowle
No branches or pull requests
Submitted by: Roby Joehanes; Assigned to: Nobody; R-Forge link
Suppose the first line of a 5-column flat CSV file is as follows:
This line is skipped in
v1.9.2
, and so the data file has no column header (only V1,V2,...,V5). This has not been a problem inv1.8.10
.The text was updated successfully, but these errors were encountered: