How do I find out for which versions of R this package is available?
我如何知道这个包的R版本是可用的?
> install.packages("Rbbg", repos = "http://r.findata.org")
Warning: unable to access index for repository http://r.findata.org/src/contrib
Warning message:
package 'Rbbg' is not available (for R version 2.15.2)
2 个解决方案
#1
7
You can find out by browsing the bin directory at http://r.findata.org/
您可以通过在http://r.findata.org/上浏览bin目录找到答案。
You're using Windows, right?
您使用的是Windows,对吧?
The source code for Rbbg is available on github at https://github.com/johnlaing/blpwrapper
Rbbg的源代码可以在github上找到,https://github.com/johnlaing/blpwrapper。
#2
3
Part of the issue here that is non-standard is it's looking for source by default, rather than binary.
这里的部分问题是非标准的,它是在默认情况下寻找源,而不是二进制。
Warning in install.packages :
unable to access index for repository http://r.findata.org/src/contrib
http://r.findata.org/src/ does not exist, but http://r.findata.org/bin does
http://r.findata.org/src/不存在,但http://r.findata.org/bin确实存在。
#1
7
You can find out by browsing the bin directory at http://r.findata.org/
您可以通过在http://r.findata.org/上浏览bin目录找到答案。
You're using Windows, right?
您使用的是Windows,对吧?
The source code for Rbbg is available on github at https://github.com/johnlaing/blpwrapper
Rbbg的源代码可以在github上找到,https://github.com/johnlaing/blpwrapper。
#2
3
Part of the issue here that is non-standard is it's looking for source by default, rather than binary.
这里的部分问题是非标准的,它是在默认情况下寻找源,而不是二进制。
Warning in install.packages :
unable to access index for repository http://r.findata.org/src/contrib
http://r.findata.org/src/ does not exist, but http://r.findata.org/bin does
http://r.findata.org/src/不存在,但http://r.findata.org/bin确实存在。