Can't install bigrf package

时光总嘲笑我的痴心妄想 提交于 2019-12-04 06:15:50

问题


I'm having some extremely frustrating difficulty installing the bigrf R package.

I have tried the following:

install.packages('bigrf',repo='https://github.com/aloysius-lim/bigrf.git',type='source')

^^with dev mode on

install_github("aloysius-lim","bigrf")

install.packages("bigrf",source=true)

These have all been tried on R build 2.14 (which bigrf was built on), 2.15, 3.0.2 and 3.1.1 I am getting a not available for build x' every time. Is bigrf defunct? I have seen a couple of posts here on SO which have used various builds of R requesting help with bigrf. the solutions IO have tried came from these threads :/


回答1:


Package ‘bigrf’ was removed from the CRAN repository.

Formerly available versions can be obtained from the archive.

Archived on 2015-11-21 as check problems were not corrected despite reminders from CRAN people that's what the note i get from the https://cran.r-project.org/web/packages/bigrf/index.html




回答2:


To install the current version of bigrf on CRAN:

install.packages("bigrf", dependencies=TRUE)

To install the development version on GitHub:

library(devtools)
install_github("bigrf", repo='aloysius-lim/bigrf')


来源:https://stackoverflow.com/questions/25239514/cant-install-bigrf-package

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!