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 dfa9319 commit e67a760Copy full SHA for e67a760
spec/API_specification/dataframe_api/dataframe_object.py
@@ -944,6 +944,10 @@ def join(
944
"""
945
Join with other dataframe.
946
947
+ Other than the joining column name(s), no column name is allowed to appear in
948
+ both `self` and `other`. Rename columns before calling `join` if necessary
949
+ using :meth:`rename_columns`.
950
+
951
Parameters
952
----------
953
other : DataFrame
@@ -963,4 +967,10 @@ def join(
963
967
Returns
964
968
-------
965
969
DataFrame
970
971
+ Raises
972
+ ------
973
+ ValueError
974
+ If, apart from `left_on` and `right_on`, there are any column names
975
+ present in both `self` and `other`.
966
976
0 commit comments