1. Learn
  2. /
  3. Courses
  4. /
  5. Analyzing Marketing Campaigns with pandas

Exercise

Daily marketing reach by channel

In this exercise, you'll determine how many users are seeing the marketing assets each day. This is crucial to understand how effective our marketing efforts have been over the past month.

You'll use .groupby() and .nunique() to calculate daily users.

Instructions

100 XP
  • Group the marketing DataFrame by 'date_served' and count the number of unique user IDs.