从PySpark DataFrame中的非空列中选择值

时间:2016-03-23 13:19:41

标签: python apache-spark dataframe pyspark apache-spark-sql

有一个缺少值的pyspark数据框:

tbl = sc.parallelize([
        Row(first_name='Alice', last_name='Cooper'),             
        Row(first_name='Prince', last_name=None),
        Row(first_name=None, last_name='Lenon')
    ]).toDF()
tbl.show()

这是表格:

  +----------+---------+
  |first_name|last_name|
  +----------+---------+
  |     Alice|   Cooper|
  |    Prince|     null|
  |      null|    Lenon|
  +----------+---------+

我想创建一个新列,如下所示:

  • 如果名字为None,请使用姓氏
  • 如果姓氏为无,请使用名字
  • 如果他们都在场,请将它们连接起来
  • 我们可以安全地假设其中至少有一个存在

我可以构建一个简单的函数:

def combine_data(row):
    if row.last_name is None:
        return row.first_name
    elif row.first_name is None:
        return row.last_name
    else:
        return '%s %s' % (row.first_name, row.last_name)
tbl.map(combine_data).collect()

我确实得到了正确的结果,但我无法将其作为列附加到表格中:tbl.withColumn('new_col', tbl.map(combine_data))会产生AssertionError: col should be Column

map的结果转换为Column的最佳方法是什么?有没有一种处理null值的首选方法?

2 个答案:

答案 0 :(得分:6)

一如既往,最好直接在本机表示上操作,而不是将数据提取到Python:

from pyspark.sql.functions import concat_ws, coalesce, lit, trim

def combine(*cols):
    return trim(concat_ws(" ", *[coalesce(c, lit("")) for c in cols]))

tbl.withColumn("foo", combine("first_name", "last_name")).

答案 1 :(得分:3)

您只需使用接收两个columns作为参数的UDF

from pyspark.sql.functions import *
from pyspark.sql import Row

tbl = sc.parallelize([
        Row(first_name='Alice', last_name='Cooper'),             
        Row(first_name='Prince', last_name=None),
        Row(first_name=None, last_name='Lenon')
    ]).toDF()

tbl.show()

def combine(c1, c2):
  if c1 != None and c2 != None:
    return c1 + " " + c2
  elif c1 == None:
    return c2
  else:
    return c1

combineUDF = udf(combine)

expr = [c for c in ["first_name", "last_name"]] + [combineUDF(col("first_name"), col("last_name")).alias("full_name")]

tbl.select(*expr).show()

#+----------+---------+------------+
#|first_name|last_name|   full_name|
#+----------+---------+------------+
#|     Alice|   Cooper|Alice Cooper|
#|    Prince|     null|      Prince|
#|      null|    Lenon|       Lenon|
#+----------+---------+------------+