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!
Diese Übung ist Teil des Kurses
Reshaping Data with pandas
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Reshape the churn DataFrame by unstacking
churn_unstack = ____.____
# Print churn_unstack
print(churn_unstack)