0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

UbuntuにおけるR環境の整備

Last updated at Posted at 2018-01-07

Windows版で動かしてもいいんだけど、なぜかグラフィクスとかはLinux版のほうがきれいな気がする

Rのダウンロード

統計数理研究所のミラーサイトから最新版のRをダウンロードする
sudo apt install r-baseでインストールされるRは最新版ではないことも多いので…
この時ダウンロードしたのはr-base-core_3.4.3-1xenial0_amd64.deb.
ダウンロードしたらsudo dpkg -i r-base-core*.debでインストール.

不足しているライブラリをインストール

上記の工程でエラーが出た場合は下記のコマンドで不足しているライブラリをインストールする

$sudo apt-get install -f

Rstudioのダウンロード

結局一番良いIDEはこれだと思う. Ubuntuの場合Desktop版だと日本語入力ができないのでローカルで動かすのみでもServer版をインストールすることを薦める.

インストールとサーバーの起動方法はここに書いてある.
アドレスはデフォルトでhttp://localhost:8787/.

Tidyverseのインストール

Rの定番ライブラリ
Ubuntu本体に必要なライブラリのインストール

$sudo apt install libcurl4-openssl-dev libssl-dev libxml2-dev liblapack-dev libblas-dev gfortran

Rにインストール

>install.packages("tidyverse")
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?