Skip to content

Commit 480d6be

Browse files
authored
Docs: Added 'cross' option to one part of DataFrame.join() docstring where it was missing (#48407)
1 parent fa211d4 commit 480d6be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/frame.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9862,7 +9862,7 @@ def join(
98629862
values given, the `other` DataFrame must have a MultiIndex. Can
98639863
pass an array as the join key if it is not already contained in
98649864
the calling DataFrame. Like an Excel VLOOKUP operation.
9865-
how : {'left', 'right', 'outer', 'inner'}, default 'left'
9865+
how : {'left', 'right', 'outer', 'inner', 'cross'}, default 'left'
98669866
How to handle the operation of the two objects.
98679867
98689868
* left: use calling frame's index (or column if on is specified)

0 commit comments

Comments
 (0)