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