From 40ba87f769ab03721d01c7960b89a8c414fcfbca Mon Sep 17 00:00:00 2001 From: Reynold Xin Date: Wed, 11 May 2016 15:12:27 -0700 Subject: [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 Closes #13062 from rxin/SPARK-15278. --- python/pyspark/sql/column.py | 2 -- python/pyspark/sql/dataframe.py | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'python') diff --git a/python/pyspark/sql/column.py b/python/pyspark/sql/column.py index 90fb76f9b5..5b26e94698 100644 --- a/python/pyspark/sql/column.py +++ b/python/pyspark/sql/column.py @@ -139,8 +139,6 @@ class Column(object): df.colName + 1 1 / df.colName - .. note:: Experimental - .. versionadded:: 1.3 """ 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() -- cgit v1.2.3