Text me!
You are making progress in your customer's project. Now, you need to analyze a new dataset to find differences in the messages and gigabytes (GB) of data the customers use during the daytime and nighttime.
To that aim, you will reshape your dataset churn
using different levels. The advantage of your new dataset is that the column indices have names.
The DataFrame churn
is available for you. It contains data about state
, city
, text messages
and total GB
during day
and night
time.
This exercise is part of the course
Reshaping Data with pandas
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Stack churn by the time column level
churn_time = ____.____(____=____)
# Print churn_time
print(churn_time)