File tree 1 file changed +3
-3
lines changed
spec/API_specification/dataframe_api
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ def assign(self, *columns: Column) -> Self:
221
221
"""
222
222
...
223
223
224
- def drop_columns (self , * labels : str ) -> Self :
224
+ def drop (self , * labels : str ) -> Self :
225
225
"""Drop the specified column(s).
226
226
227
227
Parameters
@@ -240,7 +240,7 @@ def drop_columns(self, *labels: str) -> Self:
240
240
"""
241
241
...
242
242
243
- def rename_columns (self , mapping : Mapping [str , str ]) -> Self :
243
+ def rename (self , mapping : Mapping [str , str ]) -> Self :
244
244
"""Rename columns.
245
245
246
246
Parameters
@@ -863,7 +863,7 @@ def join(
863
863
864
864
Other than the joining column name(s), no column name is allowed to appear in
865
865
both `self` and `other`. Rename columns before calling `join` if necessary
866
- using :meth:`rename_columns `.
866
+ using :meth:`rename `.
867
867
868
868
Parameters
869
869
----------
You can’t perform that action at this time.
0 commit comments