在Spark上进行行计算

时间:2018-06-03 13:12:22

标签: python apache-spark

基于此answer 我需要做一些行计算

result= (reduce(add, (<some row wise calculation on col(x)> for x in df.columns[1:])) / n).alias("result")

但在此之前,我需要按降序对行值进行排序(更改每行的数据框中的列顺序?) 假设我有以下行

 3,7,21,9
 5,15,10,2

我需要知道每一行的每个值的等级(顺序),然​​后计算总和(值/索引) 第一行

21 ->4,9->3,7->3,3->1,sum(21/4,9/3,7/3,3/1)

第二行

15->4,10->3,5->2,2->1,sum(15/4,10/4,5/2,2/1)

不重复,因为我需要排序而不是列式而是行式

1 个答案:

答案 0 :(得分:2)

假设您的输入数据框如下

+----+----+----+----+
|col1|col2|col3|col4|
+----+----+----+----+
|3   |7   |21  |9   |
|5   |15  |10  |2   |
+----+----+----+----+

然后你可以编写一个udf函数来获得你想要的输出列

from pyspark.sql import functions as f
from pyspark.sql import types as t
def sortAndIndex(list):
    return sorted([(value, index+1) for index, value in enumerate(sorted(list))],  reverse=True)

sortAndIndexUdf = f.udf(sortAndIndex, t.ArrayType(t.StructType([t.StructField('key', t.IntegerType(), True), t.StructField('value', t.IntegerType(), True)])))

df.withColumn('sortedAndIndexed', sortAndIndexUdf(f.array([x for x in df.columns])))

应该给你

+----+----+----+----+----------------------------------+
|col1|col2|col3|col4|sortedAndIndexed                  |
+----+----+----+----+----------------------------------+
|3   |7   |21  |9   |[[21, 4], [9, 3], [7, 2], [3, 1]] |
|5   |15  |10  |2   |[[15, 4], [10, 3], [5, 2], [2, 1]]|
+----+----+----+----+----------------------------------+

<强>更新

您评论为

  

我的计算应该是sum(value / index)所以可能使用你的udf funcrtion我应该返回某种reduce(add,)?

为此你可以做到

from pyspark.sql import functions as f
from pyspark.sql import types as t
def divideAndSum(list):
    return sum([float(value)/(index+1) for index, value in enumerate(sorted(list))])

divideAndSumUdf = f.udf(divideAndSum, t.DoubleType())

df.withColumn('divideAndSum', divideAndSumUdf(f.array([x for x in df.columns])))

应该给你

+----+----+----+----+------------------+
|col1|col2|col3|col4|divideAndSum      |
+----+----+----+----+------------------+
|3   |7   |21  |9   |14.75             |
|5   |15  |10  |2   |11.583333333333334|
+----+----+----+----+------------------+