We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a40464a commit b3648c4Copy full SHA for b3648c4
pandas/core/frame.py
@@ -10086,11 +10086,13 @@ def join(
10086
the order of the join key depends on the join type (how keyword).
10087
validate : str, optional
10088
If specified, checks if join is of specified type.
10089
+
10090
* "one_to_one" or "1:1": check if join keys are unique in both left
- and right datasets.
10091
+ and right datasets.
10092
* "one_to_many" or "1:m": check if join keys are unique in left dataset.
10093
* "many_to_one" or "m:1": check if join keys are unique in right dataset.
10094
* "many_to_many" or "m:m": allowed, but does not result in checks.
10095
10096
.. versionadded:: 1.5.0
10097
10098
Returns
0 commit comments