aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark/sql/dataframe.py
diff options
context:
space:
mode:
authorReynold Xin <rxin@databricks.com>2016-05-11 15:12:27 -0700
committerDavies Liu <davies.liu@gmail.com>2016-05-11 15:12:27 -0700
commit40ba87f769ab03721d01c7960b89a8c414fcfbca (patch)
treea76666582fda678c74e1c985751109327b2c1f02 /python/pyspark/sql/dataframe.py
parentde9c85ccaacd12de9837eb88eae0a7e7ededd679 (diff)
downloadspark-40ba87f769ab03721d01c7960b89a8c414fcfbca.tar.gz
spark-40ba87f769ab03721d01c7960b89a8c414fcfbca.tar.bz2
spark-40ba87f769ab03721d01c7960b89a8c414fcfbca.zip
[SPARK-15278] [SQL] Remove experimental tag from Python DataFrame
## What changes were proposed in this pull request? Earlier we removed experimental tag for Scala/Java DataFrames, but haven't done so for Python. This patch removes the experimental flag for Python and declares them stable. ## How was this patch tested? N/A. Author: Reynold Xin <rxin@databricks.com> Closes #13062 from rxin/SPARK-15278.
Diffstat (limited to 'python/pyspark/sql/dataframe.py')
-rw-r--r--python/pyspark/sql/dataframe.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/pyspark/sql/dataframe.py b/python/pyspark/sql/dataframe.py
index 5378c32a1a..49b4818bcc 100644
--- a/python/pyspark/sql/dataframe.py
+++ b/python/pyspark/sql/dataframe.py
@@ -63,8 +63,6 @@ class DataFrame(object):
people.filter(people.age > 30).join(department, people.deptId == department.id)\
.groupBy(department.name, "gender").agg({"salary": "avg", "age": "max"})
- .. note:: Experimental
-
.. versionadded:: 1.3
"""
@@ -206,6 +204,8 @@ class DataFrame(object):
:class:`DataFrameWriter`. Methods that return a single answer, (e.g., :func:`count` or
:func:`collect`) will throw an :class:`AnalysisException` when there is a streaming
source present.
+
+ .. note:: Experimental
"""
return self._jdf.isStreaming()