美文网首页
安装历史版本的R包

安装历史版本的R包

作者: 小洁忘了怎么分身 | 来源:发表于2020-03-20 17:56 被阅读0次

    参考:https://support.rstudio.com/hc/en-us/articles/219949047-Installing-older-versions-of-packages

    方法一:用devtools

    require(devtools)
    install_version("ggplot2", version = "0.9.1", repos = "http://cran.us.r-project.org")
    

    方法二:源码安装

    packageurl <- "http://cran.r-project.org/src/contrib/Archive/ggplot2/ggplot2_0.9.1.tar.gz"
    install.packages(packageurl, repos=NULL, type="source")
    

    这个需要历史版本的R包链接,都在这里:https://cran.r-project.org/src/contrib/Archive/

    方法三:CMD安装

    这个需要依赖Rtools软件,参考https://www.jianshu.com/p/44ee4fb20e83
    是在命令行运行。

    wget http://cran.r-project.org/src/contrib/Archive/ggplot2/ggplot2_0.9.1.tar.gz
    R CMD INSTALL ggplot2_0.9.1.tar.gz
    

    相关文章

      网友评论

          本文标题:安装历史版本的R包

          本文链接:https://www.haomeiwen.com/subject/ihfsyhtx.html