LoginSignup
0
0

More than 1 year has passed since last update.

Rstudio-server を ubuntu 22.10 にインストール

Last updated at Posted at 2022-10-22

ダウンロード

wget https://download2.rstudio.org/server/jammy/amd64/rstudio-server-2022.07.2-576-amd64.deb

必要なライブラリーのインストール

sudo apt install libclang-dev

インストール

sudo dpkg -i rstudio-server-2022.07.2-576-amd64.deb

サーバーが動いていることの確認

sudo systemctl status rstudio-server

クライアント

http://localhost:8787
にアクセス

image.png

Linux のアカウントでサインイン

image.png

簡単な計算

> 1 + 2
[1] 3
> 10 - 8
[1] 2
> 25 * 4
[1] 100
> 30 / 5
[1] 6
> (3+4) * 2
[1] 14
> 10.2 + 3.5
[1] 13.7
> 8.1 * 2.2
[1] 17.82

関数計算

> sqrt(3)
[1] 1.732051
> pi * 2
[1] 6.283185
> sin(pi / 2)
[1] 1
> sin(pi/6)
[1] 0.5
> cos(pi/6)
[1] 0.8660254
> tan(pi/ 8)
[1] 0.4142136
> tan(pi/ 4)
[1] 1
0
0
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
0