Aggregating by date
The marketing team wants to know whether there is any difference in the conversion rate based on when in the month, your users saw an ad. In this exercise, you will practice .groupby() again, this time looking at how metrics have evolved.
Diese Übung ist Teil des Kurses
Analyzing Marketing Campaigns with pandas
Anleitung zur Übung
- Group the
marketingDataFrame bydate_servedand count the number of unique users per day. - Isolate converted users in
marketingwhile grouping bydate_servedand counting the number of unique converted users per day.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Group by date_served and count unique users
total = ____
# Group by date_served and count unique converted users
subscribers = ____
# Calculate the conversion rate per day
daily_conversion_rate = subscribers/total
print(daily_conversion_rate)