pyspark.RDD.treeAggregate¶
-
抽樣。
treeAggregate
( zeroValue:U,seqOp:可調用的((U,T],U],combOp:可調用的((U,U],U],深度:int=2 )→你¶ -
集合的元素的抽樣一個多級樹模式。
- 深度int,可選
-
建議樹的深度(默認值:2)
例子
> > >添加=λx,y:x+y> > >抽樣=sc。並行化([- - - - - -5,- - - - - -4,- - - - - -3,- - - - - -2,- - - - - -1,1,2,3,4),10)> > >抽樣。treeAggregate(0,添加,添加)5> > >抽樣。treeAggregate(0,添加,添加,1)5> > >抽樣。treeAggregate(0,添加,添加,2)5> > >抽樣。treeAggregate(0,添加,添加,5)5> > >抽樣。treeAggregate(0,添加,添加,10)5