Kolom Pyspark Min

#return the minimum from the height, age and weight columns
df.select(min('height'),min('age'),min('weight')).collect()
Plif Plouf