emacs RforS (データ解析)
Rによるやさしい統計学 (データ解析の一部として)
Emacs org-mode babel
ソースコードの埋め込み
## file RforS-Codes/04-03.R ## 標本 身長 <- c(165.2, 175.9, 161.7, 174.2, 172.1, 163.3, 170.9, 170.6, 168.4, 171.3) ## 標本平均 mean(身長) ## 標本不偏分散 (後出) var(身長)
[1] 169.36 [1] 21.66711
data
age | score |
---|---|
10 | 82 |
15 | 1000 |
8 | 52 |
13 | 75 |
12 | 38 |
9 | 80 |
13 | 92 |
11 | 65 |
15 | 85 |
18 | 98 |
3 | 20 |
15 | 92 |
14 | 78 |
12 | 53 |
emacs org-mode babel R
plot(table)
abline(lm(table$score ~ table$age), col="red")
R グラフの埋め込み
Age | Score |
---|---|
10 | 82 |
15 | 100 |
8 | 52 |
13 | 75 |
12 | 38 |
9 | 80 |
13 | 92 |
11 | 65 |
15 | 85 |
18 | 98 |
3 | 20 |
15 | 92 |
14 | 78 |
12 | 53 |
plot(table)
abline(lm(table$Score ~ table$Age), col="red")
plot(table)
abline(lm(table$Score ~ table$Age), col="red")
▽