This is an automated email from the ASF dual-hosted git repository.
gurwls223 pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/branch-3.0 by this push:
new 46fa4998a4c Revert "[SPARK-39032][PYTHON][DOCS] Examples' tag for
pyspark.sql.functions.when()"
46fa4998a4c is described below
commit 46fa4998a4c2f0d858c66c3629b13bd91d372cdd
Author: Hyukjin Kwon <[email protected]>
AuthorDate: Wed Apr 27 16:59:34 2022 +0900
Revert "[SPARK-39032][PYTHON][DOCS] Examples' tag for
pyspark.sql.functions.when()"
This reverts commit 821a348ae7f9cd5958d29ccf342719f5d753ae28.
---
python/pyspark/sql/functions.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/python/pyspark/sql/functions.py b/python/pyspark/sql/functions.py
index 803213513da..041f8418176 100644
--- a/python/pyspark/sql/functions.py
+++ b/python/pyspark/sql/functions.py
@@ -780,8 +780,6 @@ def when(condition, value):
:param condition: a boolean :class:`Column` expression.
:param value: a literal value, or a :class:`Column` expression.
- Examples
- --------
>>> df.select(when(df['age'] == 2, 3).otherwise(4).alias("age")).collect()
[Row(age=3), Row(age=4)]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]