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: Gerhard Nachtmann; Assigned to: Nobody; R-Forge link
Description here.
The text was updated successfully, but these errors were encountered:
It's not just on factor columns. It's basically due to recent changes in 1.9.3 in this part of [.data.table:
1.9.3
[.data.table
if (haskey(x)) { keylen = which.first(!key(x) %chin% ansvars)-1L if (is.na(keylen)) keylen = length(key(x)) if (keylen > length(rightcols) && !.Call(CisOrderedSubset, irows, nrow(x))) keylen = length(rightcols) if (keylen && ((is.data.table(i) && haskey(i)) || is.logical(i) || .Call(CisOrderedSubset, irows, nrow(x)))) setattr(ans,"sorted",head(key(x),keylen)) }
Here CisOrderedSubset doesn't provide required result when there's NA (IIRC from debugging it sometime back).
CisOrderedSubset
NA
And IIUC, this is how it was before.
Sorry, something went wrong.
Thanks for the migration from R-Forge!
7f78b1b
arunsrinivasan
No branches or pull requests
Submitted by: Gerhard Nachtmann; Assigned to: Nobody; R-Forge link
Description here.
The text was updated successfully, but these errors were encountered: