aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorfelixcheung <felixcheung_m@hotmail.com>2015-11-25 10:36:35 -0800
committerReynold Xin <rxin@databricks.com>2015-11-25 10:36:35 -0800
commitfaabdfa2bd416ae514961535f1953e8e9e8b1f3f (patch)
tree51dbc14a8e4cc32b269ab4019dbeec74329072e4 /python
parentc1f85fc71e71e07534b89c84677d977bb20994f8 (diff)
downloadspark-faabdfa2bd416ae514961535f1953e8e9e8b1f3f.tar.gz
spark-faabdfa2bd416ae514961535f1953e8e9e8b1f3f.tar.bz2
spark-faabdfa2bd416ae514961535f1953e8e9e8b1f3f.zip
[SPARK-11984][SQL][PYTHON] Fix typos in doc for pivot for scala and python
Author: felixcheung <felixcheung_m@hotmail.com> Closes #9967 from felixcheung/pypivotdoc.
Diffstat (limited to 'python')
-rw-r--r--python/pyspark/sql/group.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/pyspark/sql/group.py b/python/pyspark/sql/group.py
index d8ed7eb2dd..1911588309 100644
--- a/python/pyspark/sql/group.py
+++ b/python/pyspark/sql/group.py
@@ -169,11 +169,11 @@ class GroupedData(object):
@since(1.6)
def pivot(self, pivot_col, values=None):
- """Pivots a column of the current DataFrame and preform the specified aggregation.
+ """Pivots a column of the current DataFrame and perform the specified aggregation.
:param pivot_col: Column to pivot
- :param values: Optional list of values of pivotColumn that will be translated to columns in
- the output data frame. If values are not provided the method with do an immediate call
+ :param values: Optional list of values of pivot column that will be translated to columns in
+ the output DataFrame. If values are not provided the method will do an immediate call
to .distinct() on the pivot column.
>>> df4.groupBy("year").pivot("course", ["dotNET", "Java"]).sum("earnings").collect()