gpt4 book ai didi

apache-spark - 在 pyspark 数据框中复制一列

转载 作者:行者123 更新时间:2023-12-04 04:00:10 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Adding a new column in Data Frame derived from other columns (Spark)

(3 个回答)


3年前关闭。




我在 pyspark 中有一个数据框像下面的示例。我想复制数据框中的一列并重命名为另一个列名。

Name    Age    Rate
Aira 23 90
Ben 32 98
Cat 27 95

所需的输出是:
Name    Age     Rate     Rate2
Aira 23 90 90
Ben 32 98 98
Cat 27 95 95

我该怎么做?

最佳答案

只是

df.withColumn("Rate2", df["Rate"])

或(在 SQL 中)
SELECT *, Rate AS Rate2 FROM df

关于apache-spark - 在 pyspark 数据框中复制一列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50399361/

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