gpt4 book ai didi

python - PySpark 一次替换多个列中的值

转载 作者:行者123 更新时间:2023-11-28 22:11:28 25 4
gpt4 key购买 nike

我想用另一个值替换数据框列中的一个值,我必须为许多列(比如 30/100 列)执行此操作

我已经完成了 thisthis已经。

from pyspark.sql.functions import when, lit, col

df = sc.parallelize([(1, "foo", "val"), (2, "bar", "baz"), (3, "baz", "buz")]).toDF(["x", "y", "z"])
df.show()

# I can replace "baz" with Null separaely in column y and z
def replace(column, value):
return when(column != value, column).otherwise(lit(None))

df = df.withColumn("y", replace(col("y"), "baz"))\
.withColumn("z", replace(col("z"), "baz"))
df.show()

enter image description here

我可以在 y 和 z 列中分别用 Null 替换“baz”。但我想对所有列都这样做——类似于下面的列表理解方式

[replace(df[col], "baz") for col in df.columns]

最佳答案

由于大约有 30/100 列,所以让我们向 DataFrame 添加更多列以很好地概括它。

# Loading the requisite packages
from pyspark.sql.functions import col, when
df = sc.parallelize([(1,"foo","val","baz","gun","can","baz","buz","oof"),
(2,"bar","baz","baz","baz","got","pet","stu","got"),
(3,"baz","buz","pun","iam","you","omg","sic","baz")]).toDF(["x","y","z","a","b","c","d","e","f"])
df.show()
+---+---+---+---+---+---+---+---+---+
| x| y| z| a| b| c| d| e| f|
+---+---+---+---+---+---+---+---+---+
| 1|foo|val|baz|gun|can|baz|buz|oof|
| 2|bar|baz|baz|baz|got|pet|stu|got|
| 3|baz|buz|pun|iam|you|omg|sic|baz|
+---+---+---+---+---+---+---+---+---+

假设我们想要在所有列中替换 bazNullx 列和一个。使用 list comprehensions 选择那些必须进行 replacement 的列。

# This contains the list of columns where we apply replace() function
all_column_names = df.columns
print(all_column_names)
['x', 'y', 'z', 'a', 'b', 'c', 'd', 'e', 'f']
columns_to_remove = ['x','a']
columns_for_replacement = [i for i in all_column_names if i not in columns_to_remove]
print(columns_for_replacement)
['y', 'z', 'b', 'c', 'd', 'e', 'f']

最后,使用 when() 进行替换, 这实际上是 if 子句的化名。

# Doing the replacement on all the requisite columns
for i in columns_for_replacement:
df = df.withColumn(i,when((col(i)=='baz'),None).otherwise(col(i)))
df.show()
+---+----+----+---+----+---+----+---+----+
| x| y| z| a| b| c| d| e| f|
+---+----+----+---+----+---+----+---+----+
| 1| foo| val|baz| gun|can|null|buz| oof|
| 2| bar|null|baz|null|got| pet|stu| got|
| 3|null| buz|pun| iam|you| omg|sic|null|
+---+----+----+---+----+---+----+---+----+

如果可以用普通的 if-else 子句完成替换,则无需创建 UDF 和定义函数来进行替换。 UDF 通常是一项代价高昂的操作,应尽可能避免。

关于python - PySpark 一次替换多个列中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55643713/

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