gpt4 book ai didi

python - 如何获取包含 Pyspark Dataframe 中另一列中给出的多列值的列表列?

转载 作者:太空宇宙 更新时间:2023-11-03 20:37:21 24 4
gpt4 key购买 nike

有没有办法在 Pyspark 中创建像下面所示的 Dataframe 这样的新列?

我一直在尝试列表理解:

import pyspark.functions as F

df.withColumn('result', [F.col(colname) for colname in F.col('colList')])

但不起作用。

预期结果是:

+----+----+----+----+----+---------------+------+
|col1|col2|col3|col4|col5| colList|result|
+----+----+----+----+----+---------------+------+
| 1| 2| 0| 3| 4|['col1','col2']| [1,2]|
| 1| 2| 0| 3| 4|['col2','col3']| [2,0]|
| 1| 2| 0| 3| 4|['col1','col3']| [1,0]|
| 1| 2| 0| 3| 4|['col3','col4']| [0,3]|
| 1| 2| 0| 3| 4|['col2','col5']| [2,4]|
| 1| 2| 0| 3| 4|['col4','col5']| [3,4]|
+----+----+----+----+----+---------------+------+

最佳答案

# Loading requisite functions and creating the DataFrame
from pyspark.sql.functions import create_map, lit, col, struct
from itertools import chain

myValues = [(1,2,0,3,4,['col1','col2']),(1,2,0,3,4,['col2','col3']),
(1,2,0,3,4,['col1','col3']),(1,2,0,3,4,['col3','col4']),
(1,2,0,3,4,['col2','col5']),(1,2,0,3,4,['col4','col5'])]
df = sqlContext.createDataFrame(myValues,['col1','col2','col3','col4','col5','colList'])
df.show()
+----+----+----+----+----+------------+
|col1|col2|col3|col4|col5| colList|
+----+----+----+----+----+------------+
| 1| 2| 0| 3| 4|[col1, col2]|
| 1| 2| 0| 3| 4|[col2, col3]|
| 1| 2| 0| 3| 4|[col1, col3]|
| 1| 2| 0| 3| 4|[col3, col4]|
| 1| 2| 0| 3| 4|[col2, col5]|
| 1| 2| 0| 3| 4|[col4, col5]|
+----+----+----+----+----+------------+

下一步,我们为数组 colList 中的各个列创建列。

df = df.withColumn('first_col',col('colList')[0])
df = df.withColumn('second_col',col('colList')[1])
df.show()
+----+----+----+----+----+------------+---------+----------+
|col1|col2|col3|col4|col5| colList|first_col|second_col|
+----+----+----+----+----+------------+---------+----------+
| 1| 2| 0| 3| 4|[col1, col2]| col1| col2|
| 1| 2| 0| 3| 4|[col2, col3]| col2| col3|
| 1| 2| 0| 3| 4|[col1, col3]| col1| col3|
| 1| 2| 0| 3| 4|[col3, col4]| col3| col4|
| 1| 2| 0| 3| 4|[col2, col5]| col2| col5|
| 1| 2| 0| 3| 4|[col4, col5]| col4| col5|
+----+----+----+----+----+------------+---------+----------+

具有整数值的列列表 -

concerned_columns = [x for x in df.columns if x not in {'colList','first_col','second_col'}]
print(concerned_columns)
['col1', 'col2', 'col3', 'col4', 'col5']

现在,最重要的部分是,我们使用 create_map 创建列名称与其各自值之间的映射。 Spark 2.+ 版本以来的功能。

# Maping - (column name, column values)
col_name_value_mapping = create_map(*chain.from_iterable(
(lit(c), col(c)) for c in concerned_columns
))

最后,应用此映射来获取存储在列 first_colsecond_col 中的列的值,并使用 struct 将它们放入数组中。 .

df = df.withColumn('result', struct(col_name_value_mapping[col('first_col')],col_name_value_mapping[col('second_col')]))
df = df.drop('first_col','second_col')
df.show()
+----+----+----+----+----+------------+------+
|col1|col2|col3|col4|col5| colList|result|
+----+----+----+----+----+------------+------+
| 1| 2| 0| 3| 4|[col1, col2]| [1,2]|
| 1| 2| 0| 3| 4|[col2, col3]| [2,0]|
| 1| 2| 0| 3| 4|[col1, col3]| [1,0]|
| 1| 2| 0| 3| 4|[col3, col4]| [0,3]|
| 1| 2| 0| 3| 4|[col2, col5]| [2,4]|
| 1| 2| 0| 3| 4|[col4, col5]| [3,4]|
+----+----+----+----+----+------------+------+

关于python - 如何获取包含 Pyspark Dataframe 中另一列中给出的多列值的列表列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57086759/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com