-
Notifications
You must be signed in to change notification settings - Fork 368
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Join on columns of different name #1297
Comments
I'd suggest using pairs, e.g. |
I'm hesitant about using Anyway, if we use |
closed via #1312 |
Transfer of JuliaData/DataTables.jl#78
idea summary: Use a 2-element tuple to support joining DataFrames on columns that do not have the same names. Currently, we require renaming columns so that they match before columns can be used for joining
Pandas does this more explicitly by having
left_on
right_on
keywords, and R's Data.Table hasby.x
andby.y
(jump to page 61 in docs)The text was updated successfully, but these errors were encountered: