course content

Course Content

Pandas First Steps

ChallengeChallenge
question-icon

You have a dataframe, named 'cars', with the following three columns: 'model', 'year', and 'price'. Match the correct functions with their functionality.


Find the max values for all columns from the dataframe.
___

Find the lowest price of existing cars.
___

Find the mode value for 'name' column.
___

Find the average year the cars were made.
___

Click or drag`n`drop items and fill in the blanks

dots
cars['price'].min()
dots
cars['year'].mean()
dots
cars['name'].mode()
dots
cars.max()
down-icon

Section 3.

Chapter 14