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
options(datatable.auto.index=TRUE) options(datatable.verbose=TRUE) data.table(one = c(rep(10, 1), rep(20, 2)))[one == max(one)]
creating new index 'one' forder took 0 sec Error in eval(expr, envir, enclos) : object 'one' not found
options(datatable.auto.index=FALSE) data.table(one = c(rep(10, 1), rep(20, 2)))[one == max(one)]
one 1: 20 2: 20
The text was updated successfully, but these errors were encountered:
is it on 1.9.4 or latest 1.9.5? seems to be duplicate of #858 which should be already fixed.
Sorry, something went wrong.
The latest avaiable on CRAN 1.9.4. Yes, it seems the same problem. Cool that it's already fixed.
mattdowle
No branches or pull requests
creating new index 'one'
forder took 0 sec
Error in eval(expr, envir, enclos) : object 'one' not found
one
1: 20
2: 20
The text was updated successfully, but these errors were encountered: