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
x.
j
A new feature to mention x columns explicitly by x.col was introduced with 620276b. Unfortunately it doesn't work when grouping by .EACHI.
x
x.col
.EACHI
library(data.table) dt = data.table(a=1L) dt[dt, .(xa=x.a, ia=i.a), on="a"] # xa ia #1: 1 1 dt[dt, .(xa=x.a, ia=i.a), .EACHI, on="a"] #Error in `[.data.table`(dt, dt, .(xa = x.a, ia = i.a), .EACHI, on = "a") : # object 'x.a' not found
The text was updated successfully, but these errors were encountered:
[.data.table
#1761 and #1705, regression fix + ‘x.’ prefix in by=.EACHI joins
437c440
arunsrinivasan
No branches or pull requests
A new feature to mention
x
columns explicitly byx.col
was introduced with 620276b. Unfortunately it doesn't work when grouping by.EACHI
.The text was updated successfully, but these errors were encountered: