Skip to content

Commit 52972f4

Browse files
authored
DOC: Add versionadded markers for anti joins (#62962)
1 parent de6f6b3 commit 52972f4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pandas/core/frame.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -341,8 +341,12 @@
341341
of the left keys.
342342
* left_anti: use only keys from left frame that are not in right frame, similar
343343
to SQL left anti join; preserve key order.
344+
345+
.. versionadded:: 3.0
344346
* right_anti: use only keys from right frame that are not in left frame, similar
345347
to SQL right anti join; preserve key order.
348+
349+
.. versionadded:: 3.0
346350
on : Hashable or a sequence of the previous
347351
Column or index level names to join on. These must be found in both
348352
DataFrames. If `on` is None and not merging on indexes then this defaults

0 commit comments

Comments
 (0)