RDD.
sum
Add up the elements in this RDD.
New in version 0.7.0.
the sum of all elements
See also
RDD.mean()
RDD.sumApprox()
Examples
>>> sc.parallelize([1.0, 2.0, 3.0]).sum() 6.0