Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
3. Functions min() and max()
Grouping
Summary

Instruction

Great! The describe() function is good for viewing all summary statistics in one go. To find the minimum height, we can use min():

players['height'].min()

The result we'll get will be an integer value (180).

The opposite of min() is max(). Let's check that in an exercise.

Exercise

Find the maximum rating among all movies from the movies DataFrame.

Stuck? Here's a hint!

Start with

movies['rating']