下面是R以及相关的组件的安装:(注意图片的版本没有及时更新)

注意:如果你是首次安装,强烈建议先安装R,然后安装Rstudio。

R的安装

  • 访问 http://cran.r-project.org/
  • 点击 Download R for Windows
  • 点击 base
  • 点击 Download R 3.x.x for Windows
  • 打开并运行下载的 R-3.x.x-win.exe
  • 所有选择可以选择默认方式
. . .
1 2 3
4 5 6
7 8 9
DONE
10 11
  • 安装最新的版本 (R version 3.x.x)。

安装 Rtools(可选)

在前面的学习中可以不用安装这一组件

  • 下面安装 Rtools
  • 访问 http://cran.r-project.org/
  • 点击 Download R for Windows
  • 点击 Rtools
  • 下载 Rtools3x.exe (此处注意要选择与安装的版本一致)
  • Open and run the file you just downloaded Rtools3x.exe
  • 同样没有必要更改选项
. . .
1 2 3
4 5 6
7 8 9
10 11 12
DONE
13 14

RStudio 的安装

  • 如果是已经安装过,需要选择正确的R版本: 访问 Tools/Global Options. 选择已安装R的版本.
  • 如果没有安装,请访问 http://www.rstudio.com/ and 点击 Desktop.
  • 选择 DOWNLOAD RSTUDIO DESKTOP
  • Download the installer for Windows.
  • Open and run the file you just downloaded RStudio-0.9x.xxxx.exe (版本可能会有更新)
  • 选择默认设置即可
. . .
1 2 3
DONE
4 5 6

安装 devtools (可选)

  • 打开 Rstudio, in the Files/Plots/Packages/Help panel, 选择 Packages 点击 Install
  • Type devtools under Packages, make sure you spell the name of the package correctly. Then, 点击 Install

  • 除了上面,可以直接运行下列语句来安装

    install.packages("devtools")

返回课程主页