Answers for "Find the minimum item in this RDD"

0

Find the minimum item in this RDD

rdd = sc.parallelize([2.0, 5.0, 43.0, 10.0])
rdd.min()
# 2.0
rdd.min(key=str)
# 10.0
Posted by: Guest on March-11-2020

Code answers related to "Find the minimum item in this RDD"

Python Answers by Framework

Browse Popular Code Answers by Language