gpt4 book ai didi

否定列的 Pyspark 函数

转载 作者:行者123 更新时间:2023-12-05 01:39:53 25 4
gpt4 key购买 nike

是否有内置函数来添加一个新列,它是原始列的否定?

Spark SQL 有函数negative()。 Pyspark 好像没有继承这个功能。

df_new = df.withColumn(negative("orginal"))

最佳答案

假设您的列 original 是 bool 值:

df_new = df.withColumn(~df["original"])  # Equivalent to "not original"

关于否定列的 Pyspark 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57587677/

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