Chapter 2 Introduction to R Language

2.1 安装R / RStudio / R包

  • 安装R
Windows系统下,运行一个exe文件即可安装基础R软件。        
这个exe文件可从https://cran.r-project.org/bin/windows/base/上下载
  • 安装RStudio
Windows系统下,运行一个exe文件即可安装RStudio软件,  
链接https://posit.co/download/rstudio-desktop/
  • 安装R包
pkgs = c('raster), 'leaflet', 'rgeos') # 包名
install.packages(pkgs) # 安装R包
inst = lapply(pkgs, library, character.only = TRUE) # 加载包

多种安装方法见附件2023-06-16_安装R包的六种方式.md

2.2 更新R / RStudio / R包

  • 更新R
第一步:install.packages("installr")
第二步:require(installr)
第三步:updateR()
  • 更新Rstudio
Help -> Check for Updates
更新后的Rstudio中选择更新后的R,Tools>Global Options>Genreal>R version 即可
  • 更新R包
update.packages()