ComenzarEmpieza gratis

International caller

You have a new task. You will analyze the pattern of customers on international and domestic calls.

You explore the churn dataset, which contains a multi-level row index. Again, you will reshape the data, as you expect it will help you to do further analysis.

The DataFrame churn is available for you. It contains data about minutes, calls, and charge for different times of the day, types of calls, and exited status. Make sure to examine it in the console!

Este ejercicio forma parte del curso

Reshaping Data with pandas

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Reshape the churn DataFrame by unstacking
churn_unstack = ____.____

# Print churn_unstack
print(churn_unstack)
Editar y ejecutar código