我正在尝试安装名为“ 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")
答案 0 :(得分:4)
该软件包已重新启动为officer
(请参见https://github.com/davidgohel/ReporteRs)。因此,通过以下方式安装:
install.packages("officer")
或通过的开发版本
devtools::install_github("davidgohel/officer")