Spark Select 表达式仅在 R 中可用,在 Scala 中不可用



在 Scala 中使用 Spark 时,火花selectExpr.html https://docs.databricks.com/spark/latest/sparkr/functions/selectExpr.html 叫什么名字?

编辑

如何在withColumn语句中使用它?

val scalarInput = 123
df.withColumn("foo", selectExpr("""someHiveUDF( ${scalarInput}, column)"""))

失败与 selectExpr未找到

名称完全相同,selectExpr

def selectExpr(exprs: String*): DataFrame 

org.apache.spark.sql.functions._expr就是你想要的!

相关内容

  • 没有找到相关文章

最新更新