- R 菜鸟教程
- R - 教程
- R - 概述
- R - 环境设置
- R - 基本语法
- R - 数据类型
- R - 变量
- R - 运算符
- R - 判断语句
- R - Loop (循环)
- R - 函数
- R - 字符串
- R - 矢量
- R - 列表
- R - 矩阵
- R - 数组
- R - 因子
- R - 数据帧
- R - 包(Packages)
- R - 数据重塑
- R 数据接口
- R - CSV 文件
- R - Excel 文件
- R - 二进制文件
- R - XML 文件
- R - JSON 文件
- R - Web 数据
- R - 数据库
- R 图表和图形
- R - 饼图
- R - 条形图
- R - 箱线图
- R - 直方图
- R - 折线图
- R - 散点图
- R 统计示例
- R - 平均值、中位数和众数
- R - 线性回归
- R - 多元回归
- R - Logistic 回归
- R - 正态分布
- R - 二项分布
- R - 泊松回归
- R - 协方差分析
- R - 时间序列分析
- R - 非线性最小二乘法
- R - 决策树
- R - 随机森林
- R - 生存分析
- R - 卡方检验
R - 环境设置
本地环境设置
如果您仍然愿意为 R 设置环境,您可以按照以下步骤操作。
Windows 安装
您可以从适用于 Windows(32/64 位)的 R-3.2.2 下载 R 的 Windows 安装程序版本,并将其保存在本地目录中。
因为它是名称为“R-version-win.exe”的 Windows 安装程序 (.exe)。您只需双击并运行接受默认设置的安装程序。如果您的 Windows 是 32 位版本,它会安装 32 位版本。但是,如果您的 Windows 是 64 位的,那么它会同时安装 32 位和 64 位版本。
安装后,您可以在 Windows Program Files 下的目录结构“R:\R3.2.2\bin\i386\Rgui.exe”中找到运行程序的图标。单击此图标会调出 R-GUI,这是用于进行 R 编程的 R 控制台。
Linux 安装
R 在“R Binaries”位置作为许多 Linux 版本的二进制文件提供。
安装 Linux 的说明因风格而异。这些步骤在所述链接中的每种类型的 Linux 版本下都有提及。不过,如果你赶时间的话,那么你可以使用 yum command 来安装 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 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")