You've learned how to preview data with .head()
, .tail()
, and .sample()
, analyze numbers with .describe()
, and count categories with .value_counts()
.
Now let's practice combining these methods to get a complete picture of your data.
Engagement Message
Ready to become a data exploration expert?
Type
Fill In The Blanks
Markdown With Blanks
You want to quickly explore a new dataset. Fill in the blanks to see the first 3 rows and then get statistics for all numeric columns.
Suggested Answers
- head
- 3
- describe
Type
Sort Into Boxes
Practice Question
Which method would you use to analyze each type of data? Sort them into the correct categories.
Labels
- First Box Label: Use .describe()
- Second Box Label: Use .value_counts()
First Box Items
- Product prices
- Order quantities
- Employee ages
Second Box Items
- Customer cities
