简体   繁体   中英

How to add null values in an array in spark scala

val data = Array(-999.9,-0.5, -0.3, 0.0, 0.2, 999.9)
 val dataFrame = sqlContext.createDataFrame(data.map(Tuple1.apply)).toDF("features")

I want to introduce the null entry in the above array. I tried below but it didn't work.

val data = Array(-999.9,-0.5, -0.3, 0.0, 0.2, 999.9, null)

You need to make the array of type Option and the null will be None:

val data = Array(Some(-999.9),Some(-0.5), Some(-0.3), Some(0.0), Some(0.2), Some(999.9),None)
// data: Array[Option[Double]] = Array(Some(-999.9), Some(-0.5), Some(-0.3), Some(0.0), Some(0.2), Some(999.9), None)

val dataFrame = spark.createDataFrame(data.map(Tuple1.apply)).toDF("features")
// dataFrame: org.apache.spark.sql.DataFrame = [features: double]

dataFrame.show    
+--------+
|features|
+--------+
|  -999.9|
|    -0.5|
|    -0.3|
|     0.0|
|     0.2|
|   999.9|
|    null|
+--------+

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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