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
This is pretty minor, but worth noting/documenting/fixing if it's easy. I came across it when commenting out parts of my code to test the output of a join absent performing the j operation:
Just at a glance, the problem is j is not missing (as in DT[ , ]), but length(jsub) == 1L. Around here[.data.table runs a few tests that look at jsub[[2L]]. So we could just put an escape when length(jsub) == 1L...
This is pretty minor, but worth noting/documenting/fixing if it's easy. I came across it when commenting out parts of my code to test the output of a join absent performing the
j
operation:Closest operation in base R I guess is:
I guess I would expect this to just return
DT
since that's whatDT[ , ]
does.The text was updated successfully, but these errors were encountered: