h2oai / h2oai/datatable

Implement inner/outer joins for non-keyed frames

Open
#1,080 3 comments 0 reactions 0 assignees View on GitHub
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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.