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

Exercise

Preliminary data exploration

In the video, we read in our preliminary dataset and had a quick look at it. Let's get some practice reading in data and do a little more exploration.

Instructions

100 XP
  • Load the tidyverse package.
  • Read in the CSV click_data.csv with read_csv().
  • Take a look at the data. As you can see, it has two columns: 1) visit_date for the date when a person visited the page, and 2) clicked_adopt_today, which is 1 if they clicked the button and 0 if they didn't.
  • Find oldest and most recent date in the data using min() and max() on the visit_date column.