Skip to content

Commit

Permalink
float->floats
Browse files Browse the repository at this point in the history
  • Loading branch information
zhengruifeng authored Feb 1, 2017
1 parent 29a691f commit ccf4d8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/pyspark/sql/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -1376,10 +1376,10 @@ def approxQuantile(self, col, probabilities, relativeError):
could be very expensive. Note that values greater than 1 are
accepted but give the same result as 1.
:return: the approximate quantiles at the given probabilities. If
the input `col` is a string, the output is a list of float. If the
the input `col` is a string, the output is a list of floats. If the
input `col` is a list or tuple of strings, the output is also a
list, but each element in it is a list of float, i.e., the output
is a list of list of float.
list, but each element in it is a list of floats, i.e., the output
is a list of list of floats.
.. versionchanged:: 2.2
Added support for multiple columns.
Expand Down

0 comments on commit ccf4d8d

Please sign in to comment.