CRAN仓库

代理了CRAN源R包

安装R包前设置镜像


local({
    r <- getOption("repos")
    r["CRAN"] <- "http://mirror.xiyoucloud.pro:63333/repository/cran/"
    options(repos=r)
})