简体   繁体   English

如何在 pyspark.sql.functions.when() 中使用多个条件?

[英]How do I use multiple conditions with pyspark.sql.functions.when()?

I have a dataframe with a few columns.我有一个包含几列的数据框。 Now I want to derive a new column from 2 other columns:现在我想从其他两列派生一个新列:

from pyspark.sql import functions as F
new_df = df.withColumn("new_col", F.when(df["col-1"] > 0.0 & df["col-2"] > 0.0, 1).otherwise(0))

With this I only get an exception:有了这个,我只得到一个例外:

py4j.Py4JException: Method and([class java.lang.Double]) does not exist

It works with just one condition like this:它只适用于这样的一种条件:

new_df = df.withColumn("new_col", F.when(df["col-1"] > 0.0, 1).otherwise(0))

Does anyone know to use multiple conditions?有谁知道使用多个条件?

I'm using Spark 1.4.我正在使用 Spark 1.4。

使用括号强制执行所需的运算符优先级:

F.when( (df["col-1"]>0.0) & (df["col-2"]>0.0), 1).otherwise(0)

when in pyspark multiple conditions can be built using & (for and) and |pyspark 中,可以使用& (for and) 和|构建多个条件(for or), it is important to enclose every expressions within parenthesis that combine to form the condition (for or),将每个表达式括在括号内很重要,这些表达式组合在一起形成条件

%pyspark
dataDF = spark.createDataFrame([(66, "a", "4"), 
                                (67, "a", "0"), 
                                (70, "b", "4"), 
                                (71, "d", "4")],
                                ("id", "code", "amt"))
dataDF.withColumn("new_column",
       when((col("code") == "a") | (col("code") == "d"), "A")
      .when((col("code") == "b") & (col("amt") == "4"), "B")
      .otherwise("A1")).show()

when in spark scala can be used with && and ||spark scala 中时可以与&&||一起使用operator to build multiple conditions运算符建立多个条件

//Scala
val dataDF = Seq(
          (66, "a", "4"), (67, "a", "0"), (70, "b", "4"), (71, "d", "4"
          )).toDF("id", "code", "amt")
    dataDF.withColumn("new_column",
           when(col("code") === "a" || col("code") === "d", "A")
          .when(col("code") === "b" && col("amt") === "4", "B")
          .otherwise("A1"))
          .show()

Output:输出:

+---+----+---+----------+
| id|code|amt|new_column|
+---+----+---+----------+
| 66|   a|  4|         A|
| 67|   a|  0|         A|
| 70|   b|  4|         B|
| 71|   d|  4|         A|
+---+----+---+----------+

你也可以使用from pyspark.sql.functions import col F.when(col("col-1")>0.0) & (col("col-2")>0.0), 1).otherwise(0)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM