R语言安装export包

1、直接用install.packages("export")
报错:

package ‘export’ is not available (for R version 4.0.2)

这种烦人的错误,简直是。。。。
2、查阅资料从github上下载export包,然后安装。
1)下载地址:https://github.com/tomwenseleers/export,下载zip文件;
2)根据install文档指示,进行如下操作:

install.packages("officer")
install.packages("rvg")
install.packages("openxlsx")
install.packages("ggplot2")
install.packages("flextable")
install.packages("xtable")
install.packages("rgl")
install.packages("stargazer")
install.packages("tikzDevice")
install.packages("xml2")
install.packages("broom")
install.packages("devtools")
devtools::install_github("tomwenseleers/export")

3)安装成功啦,载入这个包包:

library(export)

你可能感兴趣的:(R语言安装export包)