gpt4 book ai didi

apache-spark - Spark __getnewargs__ 错误...方法或([class java.lang.String])不存在

转载 作者:行者123 更新时间:2023-12-04 04:43:03 25 4
gpt4 key购买 nike

我正在尝试根据列值是否在另一列中向 DataFrame 添加一列,如下所示:

df = df.withColumn('new_column', when(df['color']=='blue' | df['color']=='green', 'A').otherwise('WD'))
运行代码后,我收到以下错误:
Py4JError: An error occurred while calling o59.or. Trace:
py4j.Py4JException: Method or([class java.lang.String]) does not exist
at py4j.reflection.ReflectionEngine.getMethod(ReflectionEngine.java:318)
at py4j.reflection.ReflectionEngine.getMethod(ReflectionEngine.java:326)
at py4j.Gateway.invoke(Gateway.java:274)
at py4j.commands.AbstractCommand.invokeMethod(AbstractCommand.java:132)
at py4j.commands.CallCommand.execute(CallCommand.java:79)
at py4j.GatewayConnection.run(GatewayConnection.java:214)
at java.lang.Thread.run(Thread.java:748)
我该怎么做才能克服这个问题?
我正在使用 PySpark 2.3.0

最佳答案

使用多个条件时,由于运算符的优先级,每个条件都需要分开。

df=df.withColumn('new_column',when((df['color']=='blue')|(df['color']=='green'),'A').otherwise('WD'))

关于apache-spark - Spark __getnewargs__ 错误...方法或([class java.lang.String])不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49191500/

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