1. Learn
  2. /
  3. Courses
  4. /
  5. A/B Testing in Python

Exercise

Difference in proportions A/B test

You are data scientist running an A/B test to explore the differences in signup (conversion) rates between two landing page variants 'C' and 'D' loaded in the homepage dataset. You are tasked with guiding the team using your A/B test results to make a decision regarding which landing page variant would result in a higher signup rate if rolled out to the website traffic.

homepage is available and has the columns signup and landing_page. Every row in the DataFrame corresponds to a unique user visiting the respective landing_page. The signup column consists of binary data: '1' means the user signed up and '0' means abandoned the page. pandas and numpy have been loaded for you.

Instructions 1/4

undefined XP
    1
    2
    3
    4
  • Calculate the number of unique users in landing_page 'C' and 'D'.