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: Adam November; Assigned to: Nobody; R-Forge link
right now fread reads logicals as character strings. Could they be detected as logicals?
df <- data.frame(I=1:3, L=c(T,F,NA)) write.csv(df,'tmp.csv',row.names=F) df2 = read.csv('tmp.csv') class(dt$L) # [1] "logical" dt = fread('tmp.csv') class(dt$L) # [1] "character"
The text was updated successfully, but these errors were encountered:
fread NA and blank in logical columns, #567
24ce773
It does read logicals in v1.9.2 but not if blank or NA were in the column. Now fixed.
Sorry, something went wrong.
mattdowle
No branches or pull requests
Submitted by: Adam November; Assigned to: Nobody; R-Forge link
right now fread reads logicals as character strings. Could they be detected as logicals?
The text was updated successfully, but these errors were encountered: