R로 배우는 A/B Testing
Lauryn Burleigh
Data Scientist
A/B는 다음 경우에만 사용
A/B 테스트 고려사항
normaldist <- rnorm(10000)
datasample <- sample(normaldist, 10)
ggplot() +
aes(datasample) +
geom_histogram(bins = 8)




가족-전체 오류율 계산
1 - (1-0.05)^101 - (0.95)^10
0.40126306076
40%
| ID | 만족도 [1-10] |
|---|---|
| 01 | 1 |
| 02 | 10 |
| 03 | 9 |
mean(c(1, 10))
5.5
mean(c(1, 10, 9))
6.6666
R로 배우는 A/B Testing