有没有其他人尝试为R 3.5.0加载RQuantLib软件包?

我试过了(以前有过):

install.packages("drat", dependencies = TRUE)
drat::addRepo("ghrr")
install.packages("RQuantLib", type = "binary")

但收到错误消息:
Warning: unable to access index for repository https://ghrr.github.io/drat/bin/windows/contrib/3.5:

无法打开URL'https://ghrr.github.io/drat/bin/windows/contrib/3.5/PACKAGES'
警告信息:
软件包“RQuantLib”不可用(对于R版本3.5.0)

最佳答案

您可以尝试以下方法:

library(devtools)
install_github("eddelbuettel/rquantlib")

或等效(根据Dirk Eddelbuette的评论)
install.packages("RQuantLib", type="source")

关于r - 软件包RQuantLib不适用于R 3.5.0,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50026518/

10-12 17:19