JiaxiangBU / tutoring2

The collection of Python and R code scripts to tutor others.
https://jiaxiangbu.github.io/tutoring2/
Other
8 stars 7 forks source link

gt 安装 #29

Closed hehuanshu96 closed 4 years ago

hehuanshu96 commented 4 years ago
gt包无论换哪一个服务器都无法安装哇。 install.packages("gt")
Warning in install.packages :
  package ‘gt’ is not available (for R version 3.6.2)
> install.packages("gt")
Warning in install.packages :
  package ‘gt’ is not available (for R version 3.6.2)
JiaxiangBU commented 4 years ago

参考 GitHub 项目主页 https://github.com/rstudio/gt

因为这个包还没有在 R CRAN 上发布,所以用下面这个安装方式。

remotes::install_github("rstudio/gt")

安装前先保证安装remotes包 @hehuanshu96