当前位置: 首页>>技术教程>>正文


在Ubuntu 18.04 Bionic Beaver Linux上安装R

, ,

目的

目的是在Ubuntu 18.04 Bionic Beaver Linux上安装R,统计计算和图形系统。

操作系统和软件版本

  • 操作系统:-Ubuntu 18.04仿生海狸
  • 软件:-R版本3.4.3或更高版本

要求

以root或通过特权访问Ubuntu系统sudo命令是必需的。

困难

简单

约定

  • -要求给出linux命令可以直接以root用户身份或通过使用root特权以root特权执行sudo命令
  • $-要求给出linux命令以普通非特权用户身份执行

使用说明

在Ubuntu上安装R

在Ubuntu 18.04系统上安装R打开终端并输入:


$ sudo apt update
$ sudo apt -y install r-base

安装完成后,通过检查R版本来确认R安装:


$ R --version
R version 3.4.3 (2017-11-30) -- "Kite-Eating Tree"
Copyright (C) 2017 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)

要启动R,只需执行R命令:


$ R

R version 3.4.3 (2017-11-30) -- "Kite-Eating Tree"
Copyright (C) 2017 The R Foundation for Statistical Computing
Platform: x86_64-pc-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.

  Natural language support but running in an English locale

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包

R的许多软件包已经预先编译,并且是Ubuntu存储库的一部分。

如果您需要安装新的R包又名a库,请先搜索Ubuntu的存储库,然后再诉诸于从源代码安装软件包。以下linux命令将列出可从Ubuntu存储库获得的所有R软件包:


$ apt search r-cran

将搜索范围缩小到特定的软件包,例如gplots执行以下命令并记下软件包名称:


$ apt search r-cran gplots
Sorting... Done
Full Text Search... Done
r-cran-gplots/bionic,bionic 3.0.1-2.1 all
  GNU R package with tools for plotting data by Greg Warnes et al

r-cran-gregmisc/bionic,bionic 2.1.5-2 all
  GNU R package with miscellaneous functions by Greg Warnes et al

在这个阶段还没有gplots库可用:


$ R
> library(gplots)
Error in library(gplots) : there is no package called ‘gplots’

安装gplots只需使用apt命令和之前检索的软件包名称:


$ sudo apt install r-cran-gplots

该软件包现已安装:


$ R
> library(gplots)
Attaching package: ‘gplots’

从源代码安装R软件包

遵循我们的指南如何在GNU R中安装和使用软件包如果您需要当前无法从标准Ubuntu存储库中安装的软件包,或者需要更高的软件包版本号。

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/10250.html,未经允许,请勿转载。