arkouda icon indicating copy to clipboard operation
arkouda copied to clipboard

Add `right_join` and generic `join` functionality

Open stress-tess opened this issue 1 year ago • 0 comments

Right now we only have an inner_join method in arkouda. It feels like we should be able to add a right_join especially since we already have right_align. I think it would also be nice to have a generic join that takes a how argument that's either "inner", "left", or "right" in order to be consistent with merge

I noticed this while working on https://github.com/Bears-R-Us/arkouda/issues/2838. Since the join on right functionality call's inner_join and then add all the elements in right that aren't in left. It feels a bit roundabout and we should be able to compute that more directly

stress-tess avatar Nov 08 '23 19:11 stress-tess