“ ReporteRs”不可用

时间:2018-10-22 12:56:59

标签: r package

我正在尝试安装名为“ ReporteRs”的软件包,但它给我类似以下错误:“在install.packages中警告:软件包'ReporteRs'不可用(对于R版本3.4.4)”

我的R版本是3.4.4。 这是我的安装代码;

cran_dir_url <- "https://cran.r-project.org/src/contrib/Archive/ReporteRs/ReporteRs_0.8.9.tar.gz"

install.packages("ReporteRs", contriburl=cran_dir_url,
                 repos = cran_dir_url, 
                 type = 'source',
                 INSTALL_opts = "--no-multiarch")

1 个答案:

答案 0 :(得分:4)

该软件包已重新启动为officer(请参见https://github.com/davidgohel/ReporteRs)。因此,通过以下方式安装:

install.packages("officer")

或通过的开发版本

devtools::install_github("davidgohel/officer")