Rsuperbasic勉強会のメモ

# R-superbasic seminar 2014 10/27/2014-

## 1 (10/27/2014)

- RのインストールとRのアップデートができるようになる

    - Install and update of R

- Rコマンドの基礎としてベクトルを作成し、それを表示する

    - The most basic command to make a vector and print it

```{r}
v <- c(2,3,5)
v
print(v)
```
- R作業を保存し、再開できる

    - Save your R sesstion and resume the sesstion

```{r,eval=FALSE}
q()
```

- テキストエディタを使ってRの実行コマンドを記録し、再利用する

    - Use a text-editor to record your R codes and reuse them 

- 上矢印キー、下矢印キーを使って、以前に打ち込んだコマンドを再実行する

    - Use upward and downward arrows to rerun previous commands