Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
1. Introduction
Grouping
Summary

Instruction

Hi there! Today, we will show you how to compute basic statistics for whole datasets or for groups of rows. Are you ready?

Good. In the examples, we will be using a dataset containing some basic information on the top 10 ATP tennis players at the beginning of March 2018. You can check the contents of that file on the right (the file name is players.csv).

Exercise

In your exercises, you will be using a dataset with basic information on some imaginary movies from around the world.

Create a DataFrame named movies based on the movies.csv file. Assign it to the movies variable. We've already imported the pandas for you.

Stuck? Here's a hint!

Use the pd.read_csv() function.