-
Notifications
You must be signed in to change notification settings - Fork 991
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
fread bug with colClasses #2922
Comments
Looks a little bit similar to #2863 but with numeric and integers. |
Yep, that's a bad one. It's in 1.11.4 and probably 1.11.0+. |
The fread(str, colClasses=c("integer", "NULL", "numeric", "character", "character"))
# x1 x2 x3 x4 x5
# 1: 1 2 1.5 T cc
# 2: 3 4 2.5 F ff |
@hstahl can you file this as a separate issue? TBH I had no idea |
I'm running 1.11.2 and just came across the same bug as @hstahl I have often found it's easier just to specify a list of c("character", "integer", "NULL", "integer" ...) rather than using drop, FWIW. |
The text was updated successfully, but these errors were encountered: