aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark/sql
diff options
context:
space:
mode:
Diffstat (limited to 'python/pyspark/sql')
-rw-r--r--python/pyspark/sql/dataframe.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/pyspark/sql/dataframe.py b/python/pyspark/sql/dataframe.py
index 6d42410020..aec99017fb 100644
--- a/python/pyspark/sql/dataframe.py
+++ b/python/pyspark/sql/dataframe.py
@@ -272,9 +272,9 @@ class DataFrame(object):
"""
return self._jdf.isLocal()
- def show(self):
+ def show(self, n=20):
"""
- Print the first 20 rows.
+ Print the first n rows.
>>> df
DataFrame[age: int, name: string]
@@ -283,7 +283,7 @@ class DataFrame(object):
2 Alice
5 Bob
"""
- print self._jdf.showString().encode('utf8', 'ignore')
+ print self._jdf.showString(n).encode('utf8', 'ignore')
def __repr__(self):
return "DataFrame[%s]" % (", ".join("%s: %s" % c for c in self.dtypes))