减少意外的错误

时间:2016-12-18 07:02:20

标签: pyspark

在pyspark中使用reduce查找最大值时,我得到了以下意外结果。

[ngClass]="{orderBy=='asc'? 'someclass': 'otherclass'}"

我的样本数据是

agg.reduce(lambda a,b : a if a > b else b )

,结果是

(u'2014-07-24',97088.0)

应该给出超过94756的结果

由于 sPradeep

2 个答案:

答案 0 :(得分:1)

你应该比较元组中的第二个值,如下所示:

agg.reduce(lambda a,b : a if a[1] > b[1] else b )

答案 1 :(得分:1)

只需将"plugins": ["transform-runtime"]max

一起使用即可
key