-
Notifications
You must be signed in to change notification settings - Fork 373
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
add inner/left/right/outer/semi/anti/cross-join #2101
Conversation
CI failed due to an unrelated error (failure to clone Git repo), so this should be good to review. Thank you! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a large diff, but I really like the changes. Thanks for tackling this and being so precise.
@nalimilan - if you will not have any comments on this I will review it again and want to merge it in a few days. Thank you! |
Co-Authored-By: Milan Bouchet-Valat <nalimilan@club.fr>
Co-Authored-By: Milan Bouchet-Valat <nalimilan@club.fr>
Thank you for the comments. Apart from the suggested changes I have improved the description of |
CI went down due to large deprecation of |
src/abstractdataframe/join.jl
Outdated
Inner join two or more data frame objects and return a `DataFrame` containing | ||
the result. | ||
Perform an inner join two or more data frame objects and return a `DataFrame` containing | ||
the result. Only include rows with keys that match in all passed data frames. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Written like this, it's not obvious that it's the definition an inner join. Maybe say "An inner join includes..." Same for other kinds.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok - all suggestions applied
Co-Authored-By: Milan Bouchet-Valat <nalimilan@club.fr>
Co-Authored-By: Milan Bouchet-Valat <nalimilan@club.fr>
Co-Authored-By: Milan Bouchet-Valat <nalimilan@club.fr>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. Looks good with the small suggestions.
Co-Authored-By: Milan Bouchet-Valat <nalimilan@club.fr>
Thank you for working on this. I applied the changes. |
Fixes #2092