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
Running some very slow grouping operation that happens to be on a one-group table (occurring programmatically):
library(data.table) DT=data.table(a=1) DT[, by=a, {Sys.sleep(5); 1}] # Processed 1 groups out of 1. 100% done. Time elapsed: 5s. ETA: 0s. # a V1 # <num> <num> # 1: 1 1
Doesn't seem very useful in this case. cc @joshhwuu
The text was updated successfully, but these errors were encountered:
Thanks for the ping, sounds like a reasonable request to me! I can take a look into this 😄
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Running some very slow grouping operation that happens to be on a one-group table (occurring programmatically):
Doesn't seem very useful in this case. cc @joshhwuu
The text was updated successfully, but these errors were encountered: