gpt4 book ai didi

python - 从列表中创建 pyspark 数据框列,其中列表的长度与数据框的行数相同

转载 作者:行者123 更新时间:2023-12-01 02:46:21 25 4
gpt4 key购买 nike

我有一个现有的 pyspark 数据框,有 170 列和 841 行。我希望向其中添加另一列,即“字符串”列表。列表长度为 841,名称为 totals

  >>> totals
['165024392279', '672183', '1002643', '202292', '216254163906', '4698279464', '9247442818', '60093051178', '22208366804', '994475', '12174', '9404969384', '32118344368', '857443', '48544', '24572495416', '43802661492', '35686122552', '780813', '35414800642', '661474', '531615', '31962803064', '111295163538', '531671', '25776968294', '78538019255', '152455113964', '39305504103', '325507', '1028244', '82294034461', '715748', '12705147430', '678604', '90303771130', '1372443', '362131', '59079186929', '436218', '79528', '41366', '89254591311'...]

其中一种方法可能是创建一个新的数据框并将其与主数据框连接。

new_df = sqlContext.createDataFrame([Row(**{'3G-fixated voice users':t})for t in totals])  

因此 new_df 有 1 列、841 行。并且它无法连接到原始数据框,因为没有可连接的公共(public)列。

我能想到的另一种半生不熟的方法是使用文字。

from pyspark.sql.functions  import array,lit
totals=[str(t) for t in totals]
test_lit = array([array([lit(t) for t in tt]) for tt in totals])
big_df.withColumn('3G-fixated voice users',test_lit)

这会添加一个类型为

的新列
array<array<string>>

并且所有值都只在第一行,这是不希望的。

当列表的长度与数据框中的行数相同时,是否可以从列表中添加新列?

对于使用 pyspark 还是新手

最佳答案

希望这有帮助!

from pyspark.sql.functions import monotonically_increasing_id
df = sc.parallelize([(1,2,3,4,5),(6,7,8,9,10),(16,17,18,19,20)]).toDF(['col1','col2','col3','col4','col5'])
df = df.withColumn("row_id", monotonically_increasing_id())

totals_df = sc.parallelize(['xxx','yyy','zzz']).map(lambda x: (x, )).toDF(['totals'])
totals_df = totals_df.withColumn("row_id", monotonically_increasing_id())

final_df = df.join(totals_df, df.row_id == totals_df.row_id)
final_df = final_df.select([c for c in final_df.columns if c not in {'row_id'}])
final_df.show()


如果它解决了您的问题,请不要忘记告诉我们:)

关于python - 从列表中创建 pyspark 数据框列,其中列表的长度与数据框的行数相同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45226070/

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