Just wondering if there is an efficient way to do outer joins with data table such as
a <- data.table(a=c(1,2,3),b=c(3,4,5))
b <- data.table(a=c(1,2),k=c(1,2))
merge(a,b,by="a",all.x=T)
this works fine, but it is not as efficient as the inner join with bigger data, as the following runs very fast, but the above is really slow.
setkey(a,a)
setkey(b,a)
a[b,]
aandbare unkeyed somergewill need to key them first (as local copies (kind of) inside merge because it doesn't want to changeaandbin calling scope). In the second case you've been happy to changeaandbby keying them (did you include the time to do that?) and thena[b]is fast. But even so I'm suprised there's a large difference.mergeshould be fairly comparable tox[y]. Please state version info when talking about timings: are you on v1.8.6? And also your "very fast" and "very slow" might be my idea of "similar"! What are the actual times? – Matthew Dowle Nov 21 '12 at 13:50mergeexploding (base merge as well as data.table merge) when a cartesian join is accidentally requested. Perhaps we can put some traps in there to help detect and catch incorrect usage. Just a guess. It seems that people sometimes try to usemergewhen they actually needcbind. – Matthew Dowle Nov 21 '12 at 17:46