Implement inner/outer joins for non-keyed frames
Open
High priority
improve
join
- Dominant language
- C++
- Stars
- 1.9k
- Forks
- 164
- Avg merge
- 7h 31m
- Merged PRs (30d)
- 1
Description
Creating issue so I can be notified when feature will be ready.
We can also discuss API related to this FR here.
pandas way
```py
x.merge(y, how='inner', on='KEY')
```
data.table way
```r
X[Y, on="KEY", nomatch=0L]
```
R data.frame way (also supported in data.table)
```r
merge(X, Y, by="KEY", all=TRUE)
```
Contributor guide
Assessment
This issue has not been assessed yet.