ベイジアン手法を使用してABテストの結果を計算するために、ベイジアンabテストの式を使用しています。
どこ
- 1プラス Aの成功数
- 1プラス Aの失敗数
- 1プラス Bの成功数
- 1プラス Bの失敗数
- はベータ関数です
データの例:
control: 1000 trials with 78 successes
test: 1000 trials with 100 successes
標準的な非ベイジアンプロップテストでは、重要な結果が得られます(p <10%):
prop.test(n=c(1000,1000), x=c(100,78), correct=F)
# 2-sample test for equality of proportions without continuity correction
#
# data: c(100, 78) out of c(1000, 1000)
# X-squared = 2.9847, df = 1, p-value = 0.08405
# alternative hypothesis: two.sided
# 95 percent confidence interval:
# -0.0029398 0.0469398
# sample estimates:
# prop 1 prop 2
# 0.100 0.078
ベイズの公式を(リンクの説明を使用して)実装したところ、非常に奇妙な結果が得られました。
# success control+1
a_control <- 78+1
# failures control+1
b_control <- 1000-78+1
# success control+1
a_test <- 100+1
# failures control+1
b_test <- 1000-100+1
is_control_better <- 0
for (i in 0:(a_test-1) ) {
is_control_better <- is_control_better+beta(a_control+i,b_control+b_test) /
(b_test+i)*beta(1+i,b_test)*beta(a_control,b_control)
}
round(is_control_better, 4)
# [1] 0
誰かが明確にできますか?
あなたの右!もっと注目されると思いました!
—
Yehoshaphat Schellekens 2015
@YehoshaphatSchellekensもしそれが本当の理由だったのなら、
—
Tim
p-value
タグは関係ないので削除します。
もちろん問題ありません。
—
Yehoshaphat Schellekens 2015
p-value
タグ付きのベイジアン分析質問?ベイジアンはp値とは何の関係もないことを拒否したと思いました。