Can't install bigrf package

后端 未结 2 891
感动是毒
感动是毒 2021-01-28 04:44

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

I have tried the following:

install.packages(\'bigrf\',repo=\'https://g         


        
2条回答
  •  无人共我
    2021-01-28 04:58

    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')
    

提交回复
热议问题