Session Ready
Exercise

Plot 8 months data

Before starting the next experiment, let's take a second to look at the data so far from our original two conditions. Even though the cat in the hat did better, you decided to keep running both versions so you could see how results compared over more time. All necessary libraries and the data frame eight_month_checkin_data has been pre-loaded for you.

Instructions
100 XP
  • Make a new column called month_text so we have the months formatted more nicely. Use the mutate() function and the visit_date column to create month_text.
  • Use our newly created column in the group_by() to find out conversion rates per month for each condition.
  • Use our new column as the x value in the plot and update the color and group aesthetics to show different lines for each condition.