Rは、オープンソースのプログラミング言語であり、統計計算とグラフィック表現を専門とする無料の環境です。これは、R Foundation for Statistics Computingによってサポートされており、主に統計ソフトウェアの開発とデータ分析の実行のために統計家とデータマイニング担当者によって使用されます。
この記事では、RをCentOS8にインストールする方法について説明します。
前提条件#
このチュートリアルを続行する前に、次の前提条件を満たしていることを確認してください。
- システムには少なくとも1GのRAMが搭載されています。それ以外の場合は、スワップファイルを作成します。
- sudo権限を持つユーザーとしてログインしています。
CentosへのRのインストール#
RパッケージはCentOS8コアリポジトリに含まれていません。 EPELリポジトリからRをインストールします:
CentOS 8にRをインストールするには、次の手順に従います。
-
EPELおよびPowerToolsリポジトリを有効にします:
sudo dnf install epel-release
sudo dnf config-manager --set-enabled PowerTools
-
次のように入力してRをインストールします:
sudo yum install R
Rは、必要なすべてのRコンポーネントを含むメタパッケージです。
-
Rバージョンを印刷してインストールを確認します:
R --version
執筆時点で、Rの最新の安定バージョンはバージョン3.6.2です:
R version 3.6.2 (2019-12-12) -- "Dark and Stormy Night" Copyright (C) 2019 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 the terms of the GNU General Public License versions 2 or 3. For more information about these matters see https://www.gnu.org/licenses/.
-
一般的なRパッケージで使用されるライブラリとツールをインストールします。
sudo yum install make gcc gcc-c++ libcurl-devel libxml2-devel openssl-devel texlive-*
それでおしまい! CentOSシステムが正常にインストールされ、使用を開始できます。
CRANからのRパッケージのインストール#
Rが非常に人気がある主な理由の1つは、Comprehensive R Archive Network(CRAN)を通じて利用できる膨大な数のパッケージです。
R
の場合 バイナリはrootまたはsudoとして起動され、パッケージはグローバルにインストールされ、すべてのシステムユーザーが利用できます。ユーザーのパーソナルライブラリを設定するには、通常のユーザーとしてバイナリを呼び出します。
例として、stringr
という名前のパッケージをインストールします 、一般的な文字列操作の高速で正しい実装を提供します。
ルートとしてRコンソールを開くことから始めます:
sudo -i R
R version 3.6.3 (2020-02-29) -- "Holding the Windsock"
Copyright (C) 2020 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コンソール内で実行されます。
stringr
をインストールします パッケージ:
install.packages("stringr")
CRANミラーを選択するように求められます:
Installing package into ‘/usr/lib64/R/library’
(as ‘lib’ is unspecified)
--- Please select a CRAN mirror for use in this session ---
Secure CRAN mirrors
現在地に最も近いミラーを選択してください。
インストールには時間がかかります。完了したら、次のように入力してライブラリをロードします。
library(stringr)
次に、tutorial
という名前の単純な文字ベクトルを作成します :
tutorial <- c("How", "to", "Install", "R", "on", "CentOS", "8")
各文字列の長さを出力する次の関数を実行します。
str_length(tutorial)
[1] 3 2 7 1 2 6 1
その他のRパッケージは、CRANパッケージページで見つけることができ、install.packages()
を使用してインストールできます。 。