course content

Course Content

Pandas First Steps

Challenge 2Challenge 2
question-icon

Correctly match the function names and the functionality they perform.


To view the first row in the dataframe -
___

To view one random row in the dataframe -
___

To view the last row in the dataframe -
___

To view the last 5 rows in the dataframe -
___

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

dots
dataframe.tail(5)
dots
dataframe.tail(1)
dots
dataframe.sample()
dots
dataframe.head(1)
down-icon

Section 3.

Chapter 3