作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的数据如下所示:
+----------+-------------+-------+--------------------+--------------+---+
|purch_date| purch_class|tot_amt| serv-provider|purch_location| id|
+----------+-------------+-------+--------------------+--------------+---+
|03/11/2017|Uncategorized| -17.53| HOVER | | 0|
|02/11/2017| Groceries| -70.05|1774 MAC'S CONVEN...| BRAMPTON | 1|
|31/10/2017|Gasoline/Fuel| -20| ESSO | | 2|
|31/10/2017| Travel| -9|TORONTO PARKING A...| TORONTO | 3|
|30/10/2017| Groceries| -1.84| LONGO'S # 2| | 4|
from pyspark.sql.types import IntegerType
from pyspark.sql.functions import udf
def y(row):
if row['tot_amt'] < (-50):
val = 1
else:
val = 0
return val
y_udf = udf(y, IntegerType())
df_7 = df_4.withColumn('Y',y_udf(df_4['tot_amt'], (df_4['purch_class'],
(df_4['purch_date'], (df_4['serv-provider'], (df_4['purch_location'])))
display(df_7)
SparkException: Job aborted due to stage failure: Task 0 in stage 67.0 failed
1 times, most recent failure: Lost task 0.0 in stage 67.0 (TID 85, localhost,
executor driver): org.apache.spark.api.python.PythonException: Traceback (most
recent call last):
File "/databricks/spark/python/pyspark/worker.py", line 177, in main
process()
File "/databricks/spark/python/pyspark/worker.py", line 172, in process
serializer.dump_stream(func(split_index, iterator), outfile)
File "/databricks/spark/python/pyspark/worker.py", line 104, in <lambda>
func = lambda _, it: map(mapper, it)
File "<string>", line 1, in <lambda>
File "/databricks/spark/python/pyspark/worker.py", line 71, in <lambda>
return lambda *a: f(*a)
TypeError: y() takes exactly 1 argument (2 given)
最佳答案
如何使其工作(通过struct
)
from pyspark.sql.functions import struct
df_4.withColumn("y", y_udf(
# Include columns you want
struct(df_4['tot_amt'], df_4['purch_class'])
))
y_udf = udf(lambda y: 1 if y < -50 else 0, IntegerType())
df_4.withColumn("y", y_udf('tot_amt'))
from pyspark.sql.functions import when
df_4.withColumn("y", when(df_4['tot_amt'] < -50, 1).otherwise(0))
关于if-statement - IF声明Pyspark,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47583007/
我是一名优秀的程序员,十分优秀!