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: Michele Carriero; Assigned to: Arun ; R-Forge link
In the same way .N gets named as N, the same should happen for .I
.N
N
.I
dt <- data.table(a=sample(letters, 5), b=rnorm(5)) dt[, list(.N, .I)] # N .I #1: 5 1 #2: 5 2 #3: 5 3 #4: 5 4 #5: 5 5
The text was updated successfully, but these errors were encountered:
arunsrinivasan
No branches or pull requests
Submitted by: Michele Carriero; Assigned to: Arun ; R-Forge link
In the same way
.N
gets named asN
, the same should happen for.I
The text was updated successfully, but these errors were encountered: