如何根据PySpark中其他列中的计算创建新列

时间:2018-04-27 11:36:45

标签: python apache-spark pyspark spark-dataframe

我有以下DataFrame:

+-----------+----------+----------+
|   some_id | one_col  | other_col|
+-----------+----------+----------+
|       xx1 |        11|       177|         
|       xx2 |      1613|      2000|    
|       xx4 |         0|     12473|      
+-----------+----------+----------+

我需要添加一个新列,该列基于对第一列和第二列进行的一些计算,例如,对于col1_value = 1和col2_value = 10需要生成col2中包含的col1的百分比,所以col3_value =(1/10)* 100 = 10%:

+-----------+----------+----------+--------------+
|   some_id | one_col  | other_col|  percentage  |
+-----------+----------+----------+--------------+
|       xx1 |        11|       177|     6.2      |  
|       xx3 |         1|       10 |      10      |     
|       xx2 |      1613|      2000|     80.6     |
|       xx4 |         0|     12473|      0       |
+-----------+----------+----------+--------------+

我知道我需要使用udf,但是如何根据结果直接添加新的列值?

一些伪代码:

import pyspark
from pyspark.sql.functions import udf

df = load_my_df

def my_udf(val1, val2):
    return (val1/val2)*100

udf_percentage = udf(my_udf, FloatType())

df = df.withColumn('percentage', udf_percentage(# how?))

谢谢!

1 个答案:

答案 0 :(得分:2)

df.withColumn('percentage', udf_percentage("one_col", "other_col"))

df.withColumn('percentage', udf_percentage(df["one_col"], df["other_col"]))

df.withColumn('percentage', udf_percentage(df.one_col, df.other_col))

from pyspark.sql.functions import col

df.withColumn('percentage', udf_percentage(col("one_col"), col("other_col")))

但为什么不呢:

df.withColumn('percentage', col("one_col") / col("other_col") * 100)