R中的因果影响包

时间:2016-07-20 12:32:44

标签: r

我正在尝试使用以下方法

https://google.github.io/CausalImpact/CausalImpact.html

作者给出了安装Causal Impact包的代码,但是我收到以下错误

  

devtools :: install_github( “谷歌/ CausalImpact”)   curl :: curl_fetch_disk(url,x $ path,handle = handle)出错:     已达到超时

我使用的是最新版本的R Studio和最新版本的R(3.3.1)。我没有找到任何地方如何安装它所以任何帮助赞赏。

谢谢

2 个答案:

答案 0 :(得分:0)

我发现使用此方法的最大问题是依赖安装。必须安装 R bsts,而其最新版本与Windows机器(仅限Linux)不兼容。

因此您需要安装前一个:

install.packages("https://cran.r-project.org/bin/windows/contrib/3.2/bsts_0.6.2.zip", 
                 repos = NULL, type = "local")

答案 1 :(得分:0)

对我而言,这是有效的

library(httr)
set_config(use_proxy(url="x.x.x.x",port=8080,username="xxxxx",password="****")) 
options(download.file.method = "wininet")