1. 思维导图
2. R studio 镜像配置
1. 设置更改
tools-options-packages
2. options 代码更改
options("repos" = c(CRAN="https://mirrors.tuna.tsinghua.edu.cn/CRAN/")) #清华源
options(BioC_mirror="https://mirrors.ustc.edu.cn/bioc/") #中科大源
#测试:options()$repos、options()$BioC_mirror
3. .Rprofile 配置文件
file.edit('~/.Rprofile')
添加 2. 中的代码
保存、重启 R
3. dplyr
查阅各包帮助文档学习实例