ComeçarComece de graça

Merge it all

Time to keep working with the obesity project! You will analyze the mean obesity percentage in different countries, but this time, the obesity DataFrame has a new column named bounds. It contains the minimum and maximum values you can find in different parts of the same country.

You notice that these values are given in a list, so you decide that you need to transform that column. You would like to have each element in a new row.

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

Este exercício faz parte do curso

Reshaping Data with pandas

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Explode the values of bounds to a separate row
obesity_bounds = ____[____].____

# Print obesity_bounds
print(obesity_bounds)
Editar e executar o código