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

Exercise

Plotting results

It turns out there was a bug on January 10th and all of the data from that day was corrupted. A new data frame was created for you called experiment_data_clean, which drops the corrupted data. Re-build our plot showing the two conversion rates, one for the test condition and one for the control condition. The tidyverse and the updated data set are pre-loaded for you.

Instructions

100 XP
  • Create a new data frame called experiment_data_clean_sum that groups by both condition and visit_date.
  • Use the new data frame to build the plot, setting color and group to condition.