Cannot install R-forge package using install.packages

后端 未结 4 1651
礼貌的吻别
礼貌的吻别 2020-11-22 12:55

This, question, is, asked, over, and, over, and, over, on the R-sig-finance mailing list, but I do not think it has been asked on stackoverflow.

It goes like this:<

4条回答
  •  感动是毒
    2020-11-22 13:38

    Alternatively, you can install the particular package from GitHub, if it has a repo at GitHub.

    I ran install.packages('ggfortify'), and got

    Warning message: “package ‘ggfortify’ is not available (for R version 3.3.2)”

    ggfortify was the GitHub repo for the same package.

    The devtools library allows you to install a package from GitHub directly with install_github('username/repo').

    library(devtools)
    install_github('sinhrks/ggfortify')
    

提交回复
热议问题