8000 [REVIEW] Update docstring of `DataFrame.merge` [skip ci] by galipremsagar · Pull Request #9572 · rapidsai/cudf · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[REVIEW] Update docstring of DataFrame.merge [skip ci] #9572

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

Merged
merged 3 commits into from
Nov 1, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions python/cudf/cudf/core/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -3748,16 +3748,23 @@ def merge(
If on is None and not merging on indexes then
this defaults to the intersection of the columns
in both DataFrames.
how : {‘left’, ‘outer’, ‘inner’}, default ‘inner’
how : {‘left’, ‘outer’, ‘inner’, 'leftsemi', 'leftanti'}, \
default ‘inner’
Type of merge to be performed.

- left : use only keys from left frame, similar to a SQL left
outer join.
- right : not supported.
- outer : use union of keys from both frames, similar to a SQL
full outer join.
- inner: use intersection of keys from both frames, similar to
- inner : use intersection of keys from both frames, similar to
a SQL inner join.
- leftsemi : similar to ``inner`` join, but only returns columns
from the left dataframe and ignores all columns from the
right dataframe.
- leftanti : returns only rows columns from the left dataframe
for non-matched records. This is exact opposite to ``leftsemi``
join.
left_on : label or list, or array-like
Column or index level names to join on in the left DataFrame.
Can also be an array or list of arrays of the length of the
Expand Down
0