Skip to content
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
4 changes: 4 additions & 0 deletions pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,12 @@
of the left keys.
* left_anti: use only keys from left frame that are not in right frame, similar
to SQL left anti join; preserve key order.

.. versionadded:: 3.0
* right_anti: use only keys from right frame that are not in left frame, similar
to SQL right anti join; preserve key order.

.. versionadded:: 3.0
on : Hashable or a sequence of the previous
Column or index level names to join on. These must be found in both
DataFrames. If `on` is None and not merging on indexes then this defaults
Expand Down
Loading