Impactの推計モデルの紹介 • この手法を実装したライブラリが、統計解析に 強いR言語での提供されているため、 1. パッケージの基本的な使用法 2. 分析環境のWeb アプリケーション化 についても解説します 4 (C) Recruit 2014 Co.,Ltd. All rights reserved. ※(1) : Kay H. Brodersen, Fabian Gallusser, Jim Koehler, Nicolas Remy, and Steven L. Scott. Inferring causal impact using Bayesian structural time series models, Annals of Applied Statistics, 2014、以降、”論文”と表記
package for estimating causal effects in time series (http://google-opensource.blogspot.jp/2014/09/causalimpact-new-open-source-package.html) – ある”施策”の効果(Causal Impact)を推計したい • Twitter – Breakout detection in the wild (https://blog.twitter.com/2014/breakout-detection-in-the-wild) – サーバー負荷が高まるタイミングを推計したい • 特に、今回はGoogle側の論文の紹介 5 (C) Recruit 2014 Co.,Ltd. All rights reserved.
All rights reserved. #開発者向けパッケージのインストール&ロード install.packages("devtools") library(devtools) #CausalImpactパッケージのインストール&ロード devtools::install_github("google/CausalImpact") library(CausalImpact)