Exercise

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.

Instructions

100 XP
  • Group the marketing DataFrame by date_served and count the number of unique users per day.
  • Isolate converted users in marketing while grouping by date_served and counting the number of unique converted users per day.