You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Submitted by: Eduard Antonyan; Assigned to: Arun ; R-Forge link
I've been getting unpredictable behaviours when using joins and get together. Here's an example that results in an error (in my real-life example the situation is actually much worse, in that I don't get an error but get incorrect results instead - I wasn't able to replicate it in a small example and am hoping it's the same issue as the one below):
dt1 = data.table(a = 1:2, b = 1:2, key = 'a')
dt2 = data.table(a = 1:2, c = 2:1, key = 'a')
dt1[dt2, list(c, get('b'))]
#Error in rep(x[[i]], length.out = mn) :
# attempt to replicate an object of type 'builtin'
Submitted by: Eduard Antonyan; Assigned to: Arun ; R-Forge link
I've been getting unpredictable behaviours when using joins and get together. Here's an example that results in an error (in my real-life example the situation is actually much worse, in that I don't get an error but get incorrect results instead - I wasn't able to replicate it in a small example and am hoping it's the same issue as the one below):
These all work though:
The text was updated successfully, but these errors were encountered: