火花 >= 2.2
由于 Spark 2.2NULL
值可以使用标准处理:handleInvalid
Param
import org.apache.spark.ml.feature.StringIndexer
val df = Seq((0, "foo"), (1, "bar"), (2, null)).toDF("id", "label")
val indexer = new StringIndexer().setInputCol("label")
默认情况下 ( error
) 它会抛出一个异常:
indexer.fit(df).transform(df).show
org.apache.spark.SparkException: Failed to execute user defined function($anonfun$9: (string) => double)
at org.apache.spark.sql.catalyst.expressions.ScalaUDF.eval(ScalaUDF.scala:1066)
...
Caused by: org.apache.spark.SparkException: StringIndexer encountered NULL value. To handle or skip NULLS, try setting StringIndexer.handleInvalid.
at org.apache.spark.ml.feature.StringIndexerModel$$anonfun$9.apply(StringIndexer.scala:251)
...
但配置为skip
indexer.setHandleInvalid("skip").fit(df).transform(df).show
+---+-----+---------------------------+
| id|label|strIdx_46a78166054c__output|
+---+-----+---------------------------+
| 0| a| 0.0|
| 1| b| 1.0|
+---+-----+---------------------------+
或者keep
indexer.setHandleInvalid("keep").fit(df).transform(df).show
+---+-----+---------------------------+
| id|label|strIdx_46a78166054c__output|
+---+-----+---------------------------+
| 0| a| 0.0|
| 1| b| 1.0|
| 3| null| 2.0|
+---+-----+---------------------------+
火花 < 2.2
至于现在(Spark 1.6.1)这个问题还没有解决,但是有一个打开的 JIRA(SPARK-11569)。不幸的是,要找到可接受的行为并不容易。SQL NULL 代表一个缺失/未知的值,因此任何索引都是毫无意义的。
可能你能做的最好的事情是使用NA
动作并且要么丢弃:
df.na.drop("column_to_be_indexed" :: Nil)
或填写:
df2.na.fill("__HEREBE_DRAGONS__", "column_to_be_indexed" :: Nil)
在使用索引器之前。