R 简明教程

R - Environment Setup

Local Environment Setup

如果您仍希望为 R 设置环境,可以按照以下步骤操作。

Windows Installation

您可以从 R-3.2.2 for Windows (32/64 bit) 下载 R 的 Windows 安装程序版本并将其保存在本地目录中。

因为它是一个带有名称“R-version-win.exe”的 Windows 安装程序(.exe)。您可以双击并运行安装程序,接受默认设置。如果您的 Windows 是 32 位版本,它将安装 32 位版本。但如果您的 Windows 是 64 位版本,那么它将安装 32 位和 64 位版本。

安装后,您可以在 Windows 程序文件下的目录结构“R\R3.2.2\bin\i386\Rgui.exe”中找到运行该程序的图标。单击此图标将显示 R-GUI,它是用于进行 R 编程的 R 控制台。

Linux Installation

R 的二进制文件适用于许多版本的 Linux,具体地址为 R Binaries

安装 Linux 的说明因版本不同而不同。这些步骤在所述链接的每种 Linux 版本下都有提及。但是,如果您很着急,那么您可以使用 yum 命令安装 R,如下所示 −

$ yum install R

上述命令将安装 R 编程的核心功能以及标准包,如果您仍然需要其他包,则可以启动 R 提示,如下所示 −

$ R
R version 3.2.0 (2015-04-16) -- "Full of  Ingredients"
Copyright (C) 2015 The R Foundation for Statistical Computing
Platform: x86_64-redhat-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many  contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.
>

现在,您可以使用 R 提示下的 install 命令安装所需的包。例如,以下命令将安装用于 3D 图表的 plotrix 包。

> install.packages("plotrix")