b:head_first_statistics:variability_and_spread
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| b:head_first_statistics:variability_and_spread [2023/09/05 23:06] – [Range] hkimscil | b:head_first_statistics:variability_and_spread [2025/09/16 23:12] (current) – [Standard score] hkimscil | ||
|---|---|---|---|
| Line 59: | Line 59: | ||
| > | > | ||
| > | > | ||
| + | |||
| > sapply(data, | > sapply(data, | ||
| [1] 1.825742 1.563472 7.362065 | [1] 1.825742 1.563472 7.362065 | ||
| Line 139: | Line 140: | ||
| 10 * ( 125 / 100) = 12.5 | 10 * ( 125 / 100) = 12.5 | ||
| 이 숫자를 반올림하면 13이므로 13번째 숫자가 10번째 페센타일이 된다 (13). | 이 숫자를 반올림하면 13이므로 13번째 숫자가 10번째 페센타일이 된다 (13). | ||
| + | < | ||
| + | > k <- c(1:125) | ||
| + | > # x th percentile | ||
| + | > k[ceiling(10 * (125 / 100))] | ||
| + | [1] 13 | ||
| + | > k[ceiling(.1 * length(k))] | ||
| + | [1] 13 | ||
| + | > quantile(k, .1) | ||
| + | | ||
| + | 13.4 | ||
| + | > | ||
| + | > # 50% percentile | ||
| + | > k[ceiling(50*(length(k)/ | ||
| + | [1] 63 | ||
| + | > k[ceiling(.5*(length(k)))] | ||
| + | [1] 63 | ||
| + | > median(k) | ||
| + | [1] 63 | ||
| + | > quantile(k, .5) | ||
| + | 50% | ||
| + | | ||
| + | > | ||
| + | > | ||
| + | </ | ||
| + | |||
| < | < | ||
| Line 188: | Line 214: | ||
| * (평균으로 추측했을 때 생기는) 오차의 제곱의 합 | * (평균으로 추측했을 때 생기는) 오차의 제곱의 합 | ||
| * (오차의) 제곱의 합 | * (오차의) 제곱의 합 | ||
| + | * $ \sum \text{random}^2 $ | ||
| + | * $ \sum \text{residual}^2 $ | ||
| + | \begin{eqnarray*} | ||
| + | \text{Individual score } X_{i} & = & \text{group (common) part} + \text{random part} \\ | ||
| + | & = & \text{group mean} + \text{random or residual} \\ | ||
| + | \end{eqnarray*} | ||
| + | |||
| + | 우리는 이것을 흔히 아래처럼 부른다 | ||
| * 제곱의 합 | * 제곱의 합 | ||
| * Sum of Square (SS) | * Sum of Square (SS) | ||
| Line 201: | Line 235: | ||
| [[:standard deviation]] | [[:standard deviation]] | ||
| ====== Standard score ====== | ====== Standard score ====== | ||
| + | see | ||
| [[:standard score]] | [[:standard score]] | ||
| + | [[:z score]] | ||
| $ z = \large\frac {x-\mu}{\sigma} $ | $ z = \large\frac {x-\mu}{\sigma} $ | ||
b/head_first_statistics/variability_and_spread.1693955177.txt.gz · Last modified: by hkimscil
