curl 如何使用install_github

xxslljrj  于 2022-11-13  发布在  Git
关注(0)|答案(1)|浏览(154)

我在计算证据权重和信息价值时,发现网上的R包rivtomasgreif可以完成这项工作,这两个包都位于github上,所以我使用了下面的代码:

library(devtools)
install_github("riv","tomasgreif")
library(woe)

但它会显示以下错误/警告消息:

> install_github("riv","tomasgreif")
Installing github repo riv/master from tomasgreif
Downloading master.zip from https://github.com/tomasgreif/riv/archive/master.zip
Error in function (type, msg, asError = TRUE)  : couldn't connect to host
In addition: Warning message:
In mapCurlOptNames(names(.els), asNames = TRUE) :
  Unrecognized CURL options: writedata

我怎样才能解决这个问题?
我尝试手动下载文件。R没有返回错误,但是在列表中找不到该软件包...(我可以安装保存在相同位置的其他软件包,代码类似)

> install.packages("~/riv.zip", repos = NULL)
> library("riv")
Error in library("riv") : there is no package called ‘riv’
6ie5vjzr

6ie5vjzr1#

我可以通过从Revolution Analytics下载Open Source R来解决这个问题,然后手动从git下载woe包,并直接粘贴到OpenSource R的库文件夹中
并加载它库(悲哀)它将工作
同样基于相同的行也将发布Python的IV和WOE

相关问题