Details
-
Documentation
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
1.6.2, 2.3.0
Description
Doc String of `withColumnRenamed` has a wrongly marked argument.
def withColumnRenamed(self, existing, new):
"""Returns a new :class:`DataFrame` by renaming an existing column.
This is a no-op if schema doesn't contain the given column name.
:param existing: string, name of the existing column to rename.
:param col: string, new name of the column.
>>> df.withColumnRenamed('age', 'age2').collect()
[Row(age2=2, name=u'Alice'), Row(age2=5, name=u'Bob')]
"""
Variable is `new` in argument list and `col` in the doc string.