在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
答案 0 :(得分:1)
你应该比较元组中的第二个值,如下所示:
agg.reduce(lambda a,b : a if a[1] > b[1] else b )
答案 1 :(得分:1)
只需将"plugins": ["transform-runtime"]
与max
:
key