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

    https://github.com/apache/spark/pull/19325#discussion_r140622410
  
    --- Diff: python/pyspark/sql/functions.py ---
    @@ -2183,14 +2183,29 @@ def pandas_udf(f=None, returnType=StringType()):
         :param f: python function if used as a standalone function
         :param returnType: a :class:`pyspark.sql.types.DataType` object
     
    -    # TODO: doctest
    +    >>> from pyspark.sql.types import IntegerType, StringType
    +    >>> slen = pandas_udf(lambda s: s.str.len(), IntegerType())
    +    >>> @pandas_udf(returnType=StringType())
    --- End diff --
    
    Have we installed pyarrow on Jenkins? The failed test complains 
`ImportError: No module named pyarrow`.


---

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

Reply via email to