Get startedGet started for free

Only going up

After your last analysis, you are excited to keep working with the obesity dataset. You have added an extra column, the variation column, which indicates the range in which the percentage varies through regions in the same country. You are not sure if the mean is the best metric to summarize obesity levels.

So you decide to explore the median percentage and variation of obesity by year and biological sex. Also, you want to get the maximum percentage observed by country, year, and biological sex.

The DataFrame obesity is available in your session. Make sure to examine it in the console!

This exercise is part of the course

Reshaping Data with pandas

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Stack obesity, get median of columns and unstack again
median_obesity = obesity.____().____(____).____()

# Print median_obesity
print(median_obesity)
Edit and Run Code