Slide 34
Slide 34 text
34
Looker上では「WHERE clicked OR converted OR ハッシュ値 = 0」する (料金1/10程度)。
Impのようなほとんどの指標は、1/100サンプリングで集計した値を100倍して計算。
Click, CVは件数が少ないため、全件取得して誤差をなくす。
BIツールで直接利用できる
select
100 * countif(suid_cluster_key = 0) as count_imp,
countif(clicked) as count_click,
countif(converted) as count_cv
from `配信ログ`
where (clicked or converted or suid_cluster_key = 0)