Github user marmbrus commented on a diff in the pull request:

    https://github.com/apache/spark/pull/11543#discussion_r55293326
  
    --- Diff: python/pyspark/sql/dataframe.py ---
    @@ -974,6 +974,35 @@ def dropDuplicates(self, subset=None):
                 jdf = self._jdf.dropDuplicates(self._jseq(subset))
             return DataFrame(jdf, self.sql_ctx)
     
    +    @since(1.4)
    +    def drop_duplicates(self, subset=None):
    +        """Return a new :class:`DataFrame` with duplicate rows removed,
    +        optionally only considering certain columns.
    +
    +        :func:`dropDuplicates` is an alias for :func:`drop_duplicates`.
    +
    +        >>> from pyspark.sql import Row
    +        >>> df = sc.parallelize([ \
    +            Row(name='Alice', age=5, height=80), \
    +            Row(name='Alice', age=5, height=80), \
    +            Row(name='Alice', age=10, height=80)]).toDF()
    +        >>> df.drop_duplicates().show()
    +        +---+------+-----+
    +        |age|height| name|
    +        +---+------+-----+
    +        |  5|    80|Alice|
    +        | 10|    80|Alice|
    +        +---+------+-----+
    +
    +        >>> df.drop_duplicates(['name', 'height']).show()
    +        +---+------+-----+
    +        |age|height| name|
    +        +---+------+-----+
    +        |  5|    80|Alice|
    +        +---+------+-----+
    +        """
    --- End diff --
    
    @rxin and I are worried about these docs diverging overtime.  I think we 
should have it delegate (as it does today) and have the docs simply say 
":func:`dropDuplicates` is an alias for :func:`drop_duplicates`."


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to