1. Learn
  2. /
  3. Courses
  4. /
  5. Introduction to A/B Testing in R

Exercise

Current conversion rate day of week

Just as we did in the slides, let's start by computing our pre-experiment conversion rate as a baseline. Rather than computing it by month though, let's compute by day of the week. The core tidyverse packages and lubridate are pre-loaded for you.

Instructions

100 XP
  • Read in the CSV click_data.csv using the read_csv() function.
  • Use the function wday() from lubridate to compute the conversion rate by day of the week.
  • Take a look at the data to see how much conversion rates vary throughout the week.