A/B Testing in R
Lauryn Burleigh
Data Scientist
Does NOT imply causation
Increase in drownings & ice cream sales
A/B: cheese and pepperoni
Does not indicate dependency
ggplot(data, aes(x = drownings,
y = icecream)) +
geom_point()
corvalue <- cor(data$time, data$enjoyment)
corvalue
[1] .73
corvalue^2
[1] .5329
Correlation coefficients
Not line of best fit
Not indication of significance
A/B Testing in R