-
Notifications
You must be signed in to change notification settings - Fork 0
/
chapter3.qmd
375 lines (289 loc) · 8.05 KB
/
chapter3.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
---
title: "3_A/Bテストを用いて実務制約内で効果検証を行う"
format: gfm
editor: visual
---
# 前準備
```{r}
library(tidyverse)
library(broom)
library(digest)
URL_LENTA_DATA <- "https://raw.githubusercontent.com/HirotakeIto/intro_to_impact_evaluation_with_python/main/data/lenta_dataset.csv"
URL_CLUSTER_TRIAL <- "https://raw.githubusercontent.com/HirotakeIto/intro_to_impact_evaluation_with_python/main/data/ch3_cluster_trial.csv"
URL_STRATIFIED_TRIAL <- "https://raw.githubusercontent.com/HirotakeIto/intro_to_impact_evaluation_with_python/main/data/ch3_stratified_trial.csv"
URL_AATEST <- "https://raw.githubusercontent.com/HirotakeIto/intro_to_impact_evaluation_with_python/main/data/ch3_aatest_trial.csv"
URL_NONCOMPLIANCE <- "https://raw.githubusercontent.com/HirotakeIto/intro_to_impact_evaluation_with_python/main/data/ch3_noncompliance_abtest.csv"
URL_TITANIC <- "https://raw.githubusercontent.com/mwaskom/seaborn-data/master/titanic.csv"
```
# A/B テストについての発展的な話題
## A/A テスト:A/B テスト設計の妥当性を確認する
### プログラム3.1 割当単位と分析単位が不一致な場合の回帰分析
```{r}
df_cluster_trial <- read_csv(URL_CLUSTER_TRIAL)
df_cluster_trial |>
lm(data = _, is_click ~ is_treatment) |>
summary()
```
### プログラム3.2 A/A テストの分析(A/A テストが成功している時)
```{r}
df_aatest <- read_csv(URL_AATEST)
df_aatest |>
lm(data = _, is_click ~ is_treatment) |>
summary()
```
### プログラム3.3 A/A テストのリプレイ
```{r}
assign_treatment_randomly <- function(id, salt) {
hash_value <- digest(
paste0(salt, "_", id),
algo = "sha256",
serialize = FALSE
)
return(strtoi(substr(hash_value, 1, 8), base = 16) %% 2)
}
```
```{r}
replays <- map_dbl(1:300, function(i) {
salt <- paste0("salt", i)
result <- df_aatest |>
mutate(
is_treatment_in_aa = map_int(
imp_id, assign_treatment_randomly, salt = salt
)
) |>
lm(data = _, is_click ~ is_treatment_in_aa) |>
tidy()
return(result$p.value[2])
})
```
```{r}
tibble(p_value = replays) |>
ggplot(aes(x = p_value)) +
geom_histogram() +
labs(title = "distribution of p value")
```
### プログラム3.5 コルモゴロフ-スミルノフ検定による分布の確認
```{r}
ks.test(replays, y = "punif")
```
# 状況に応じた A/B テストのモデリング
## クラスター A/B テスト
### プログラム3.6 クラスターA/B テストデータにおける A/A テストのリプレイ
```{r}
df_cluster_trial <- read_csv(URL_CLUSTER_TRIAL)
df_cluster_trial |>
group_by(uid) |>
summarise(
n = n(),
click = sum(is_click),
ctr = sum(is_click) / n()
)
```
```{r}
replays <- map_dbl(1:300, function(i) {
salt <- paste0("salt", i)
result <- df_cluster_trial |>
mutate(
is_treatment_in_aa = map_int(
uid, assign_treatment_randomly, salt = salt
)
) |>
lm(data = _, is_click ~ is_treatment_in_aa) |>
tidy()
return(result$p.value[2])
})
```
```{r}
tibble(p_value = replays) |>
ggplot(aes(x = p_value)) +
geom_histogram() +
labs(title = "distribution of p value")
```
```{r}
ks.test(replays, y = "punif")
```
### プログラム3.7 クラスター A/B テストデータの分析
```{r}
library(estimatr)
df_cluster_trial <- read_csv(URL_CLUSTER_TRIAL)
df_cluster_trial |>
estimatr::lm_robust(
is_click ~ is_treatment,
data = _,
clusters = uid,
se_type = "stata"
) |> summary()
```
### プログラム3.8 クラスターA/BテストデータのA/Aテスト
```{r}
replays <- map_dbl(1:300, function(i) {
salt <- paste0("salt", i)
result <- df_cluster_trial |>
mutate(
is_treatment_in_aa = map_int(
uid, assign_treatment_randomly, salt = salt
)
) |>
estimatr::lm_robust(
is_click ~ is_treatment_in_aa,
data = _,
clusters = uid,
se_type = "stata"
) |>
tidy()
return(result$p.value[2])
})
```
```{r}
tibble(p_value = replays) |>
ggplot(aes(x = p_value)) +
geom_histogram() +
labs(title = "distribution of p value")
```
```{r}
ks.test(replays, y = "punif")
```
# 層化 A/B テスト
### プログラム3.9 シミュレーション:ランダムな割り当てをした場合の性別の偏り
```{r}
set.seed(0)
generate_sample <- function() {
mean(sample(c(0, 1), size = 500, replace = TRUE, prob = c(0.5, 0.5)))
}
tibble(
id = 1:100,
value = map_dbl(id, ~ generate_sample())
) |>
ggplot(aes(x = value)) +
geom_histogram() +
labs(
x = "male ratio"
)
```
### プログラム3.10 層化 A/B テストにおけるランダムな割り当て
```{r}
set.seed(0)
df_titanic <- read_csv(URL_TITANIC) |>
select(survived, sex, pclass)
label_with_prob <- function(prob) {
sample(c(0, 1), size = 1, prob = c(1 - prob, prob))
}
df_titanic |>
group_by(sex, pclass) |>
mutate(
is_treat = map_dbl(
1:n(), ~ label_with_prob(0.3)
)
) |> ungroup() -> df_titanic
```
#### プログラム3.11 サブグループごとの割当比率を確認する
```{r}
df_titanic |>
group_by(sex, pclass) |>
summarise(
mean_is_treat = mean(is_treat)
)
```
## 層化 A/B テストの分析の実装
### プログラム3.12 層化 A/B テストの分析(通常の A/B テストと同様に行った場合)
```{r}
df_stratified <- read_csv(URL_STRATIFIED_TRIAL)
df_stratified |>
lm(data = _, y ~ is_treatment) |>
summary()
```
#### プログラム3.13 層化 A/B テストの分析(ダミー変数を利用した場合)
```{r}
df_stratified |>
lm(data = _, y ~ is_treatment + group_name) |>
summary()
```
## 処置と割当の不一致 A/B テストにおける Non-compliance
#### プログラム3.14 施策意図の効果の分析:Intent to Treat
```{r}
df_noncompliance <- read_csv(URL_NONCOMPLIANCE)
df_noncompliance |>
lm(data = _, purchase ~ assignment) |>
summary()
```
#### プログラム3.15 平均的な開封割合の確認
```{r}
df_noncompliance |>
group_by(assignment) |>
summarise(
is_deliver_mean = mean(is_deliver)
)
```
#### プログラム3.16 施策効果の復元:操作変数法の2段階推定による分析
##### lm による推定
```{r}
first_stage <- df_noncompliance |>
lm(is_deliver ~ assignment + x, data = _)
df_noncompliance_iv <- df_noncompliance |>
mutate(
pred_is_deliver = predict(first_stage)
)
second_stage <- df_noncompliance_iv |>
lm(purchase ~ pred_is_deliver + x, data = _)
summary(second_stage)
```
##### `{AER}` による推定(標準誤差の値がちょっとズレている)
```{r}
library(AER)
df_noncompliance |>
AER::ivreg(
purchase ~ is_deliver + x | assignment + x,
data = _) |>
summary()
```
##### `{sem}` による推定(標準誤差の値がちょっとズレている)
```{r}
library(sem)
df_noncompliance |>
sem::tsls(
purchase ~ is_deliver + x,
instruments = ~ assignment + x,
data = _) |>
summary()
```
# 共変量を入れて分析をする
#### プログラム3.17 共変量を考慮した A/B テストの分析
```{r}
df_abtest <- read_csv(URL_LENTA_DATA)
df_abtest |>
lm(response_att ~ is_treatment + food_share_15d + age + is_women, data = _) |>
summary()
```
```{r}
# 共変量を用いずに分析した推定結果
df_abtest |>
lm(response_att ~ is_treatment, data = _) |>
summary()
```
# 施策効果の異質性:どこで効果があるのかを知る
#### プログラム3.18 サブサンプル分割による異質性の分析
```{r}
library(stargazer)
df_abtest <- read_csv(URL_LENTA_DATA)
result_men <- df_abtest |>
filter(is_women == 0) |>
lm(response_att ~ is_treatment, data = _)
result_women <- df_abtest |>
filter(is_women == 1) |>
lm(response_att ~ is_treatment, data = _)
stargazer::stargazer(
result_men, result_women,
column.labels = c("only men model", "only women model"),
type = "text"
)
```
#### プログラム3.19 交差項による異質性の分析
```{r}
df_abtest <- read_csv(URL_LENTA_DATA)
df_abtest |>
lm(
response_att ~ is_treatment + is_women + is_treatment * is_women,
data = _
) |>
summary()
```