我有一列 [vector] 类型的列,其中包含无法删除的空值,这是一个示例
import org.apache.spark.mllib.linalg.Vectors
val sv1: Vector = Vectors.sparse(58, Array(8, 45), Array(1.0, 1.0))
val df_1 = sc.parallelize(List(("id_1", sv1))).toDF("id", "feature_vector")
val df_2 = sc.parallelize(List(("id_1", 10.0), ("id_2", 10.0))).toDF("id", "numeric_feature")
val df_joined = df_1.join(df_2, Seq("id"), "right")
df_joined.show()
+----+--------------------+---------------+
| id| feature_vector|numeric_feature|
+----+--------------------+---------------+
|id_1|(58,[8,45],[1.0,1...| 10.0|
|id_2| null| 10.0|
+----+--------------------+---------------+
我想做的是:
val map = Map("feature_vector" -> sv1)
val result = df_joined.na.fill(map)
但这会引发错误:
Message: Unsupported value type org.apache.spark.mllib.linalg.SparseVector ((58,[8,45],[1.0,1.0])).
我尝试过的其他事情:
df_joined.withColumn("feature_vector", when(col("feature_vector").isNull, sv1).otherwise(sv1)).show
我正在努力寻找适用于 Spark 1.6 的解决方案