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
As raised here: http://stackoverflow.com/questions/26308072/operator-inconsistent-in-logical-columns-in-data-table/26308820
The text was updated successfully, but these errors were encountered:
I'm guessing that includes set() as well.
set()
Also the same happens with setorder(). setkey() seems to handle it properly though.
setorder()
setkey()
Here's an example:
set.seed(45L) require(data.table) dt = data.table(x=sample(3,20, TRUE), y=sample(4,20,TRUE)) dt[x==1L] ## 9 rows dt[x==2L] attributes(dt) setorder(dt, -y) attributes(dt) dt[x==1L] ## 1 row
Sorry, something went wrong.
1e897f6
mattdowle
No branches or pull requests
As raised here:
http://stackoverflow.com/questions/26308072/operator-inconsistent-in-logical-columns-in-data-table/26308820
The text was updated successfully, but these errors were encountered: