如何计算跨列但一列的总数?
问题描述:
我想在数据框中创建一个总计"行.
I want to create a "Total" row in a dataframe.
这将添加除uid单元格以外的所有行.
This will add all rows EXCEPT the uid cell.
uid val1 val2 val3
3213 1 2 3
要创建此文件:
uid val1 val2 val3 Total
3213 1 2 3 6
因此,我需要过滤掉UID,然后求和.但是,如果在求和前删除UID,那么求和后将无法重新连接表(因为连接必须在UID上).
So, I need to filter out the UID, then sum. However, if I drop the UID before summing, then I won't be able to rejoin the tables after summing (as the join would have to be on UID).
我正在使用过滤器,但是找不到在过滤器中获取列名的方法.
I was playing with filter, but I cannot find a way to get the Column Name in filter.
所以我到目前为止是:
val dfvReducedTotalled = dfvReduced.withColumn("TOTAL", dfvReduced.columns
.filter(col=> !col.?????? == "UID")
.map(c => col(c)).reduce((c1, c2) => c1 + c2))
答
您可以首先收集不是uid
的列名,使用reduce
生成sum
表达式,然后创建Total
列:
You can collect column names that are not uid
firstly, build the sum
expressions using reduce
and then create the Total
column:
val row_sum_expr = df.columns.collect{ case x if x != "uid" => col(x) }.reduce(_ + _)
df.withColumn("Total", row_sum_expr).show
+----+----+----+----+-----+
| uid|val1|val2|val3|Total|
+----+----+----+----+-----+
|3213| 1| 2| 3| 6|
+----+----+----+----+-----+