Skip to content

Commit

Permalink
removed backslashes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nihal Harish authored and Nihal Harish committed Jun 25, 2018
1 parent 6bd6735 commit be23549
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/pyspark/sql/column.py
Expand Up @@ -518,8 +518,8 @@ def isin(self, *cols):
True if the current expression is inf.
>>> from pyspark.sql import Row
>>> df = spark.createDataFrame([\
Row(name=u'Tom', height=80.0),\
>>> df = spark.createDataFrame([
Row(name=u'Tom', height=80.0),
Row(name=u'Alice', height=float('inf'))])
>>> df.filter(df.height.isInf()).collect()
[Row(height=inf, name=u'Alice')]
Expand Down

0 comments on commit be23549

Please sign in to comment.