繁体   English   中英

当结构中的所有值都是 null 时,如何在 Scala 中触发 null 结构?

[英]How to null a struct in Scala spark when all values in the struct are null?

我有一个带有结构列的 spark scala 数据框,当结构中的所有值都是 null 时,我想要 null 而不是对象。

val someDF = Seq(
  (8, null,null),
  (64, "mouse", "s"),
  (-27, "horse", "e")
).toDF("a", "b", "c")

def make_week_struct (week:String) : Column = {
  
   val summary = struct($"b", $"c").alias(s"wks_${week}_jrny")
  
   return summary
}

val week1_summary = make_week_struct("1")

var dd = someDF.select($"a",week1_summary)

display(dd)

样本数据

a       b        c       
8       null     null
64      mouse    s    
-27     horse    e   

当前 Output

a   wks_1_jrny
8   object:{a:null, b:null}
64  object:{a:"mouse", b:"s"}
-27 object:{a:"horse", b:"e"}

预计 Output

a   wks_1_jrny
8   null
64  object:{a:"mouse", b:"s"}
-27 object:{a:"horse", b:"e"}

您还可以使用to_json function & 过滤空 json {}

scala> 

dd
.withColumn("wks_1_jrny",
              when(
                to_json($"wks_1_jrny") =!= "{}", // Filter Empty Json values.
                $"wks_1_jrny"
              )
            )
.show(false)

+---+----------+
|a  |wks_1_jrny|
+---+----------+
|8  |null      |
|64 |[mouse,s] |
|-27|[horse,e] |
+---+----------+

这也应该工作:

import org.apache.spark.sql.functions._
import spark.implicits._

val df = List(
  (None, None),
  (None, Some("abc")),
  (Some(1), Some("xyz"))
).toDF("id", "name")

val structCols = Seq("id", "name")
val dataStruct = struct(structCols.map(col): _*)
val emptyStruct = struct(df.schema.fields.filter(f => structCols.contains(f.name)).map(f => lit(null).cast(f.dataType).as(f.name)):_*)

df
  .select(when(dataStruct.equalTo(emptyStruct), lit(null: StructType)).otherwise(dataStruct).as("col"))
  .show(false)

暂无
暂无

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

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