b:head_first_statistics:measuring_central_tendency
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
b:head_first_statistics:measuring_central_tendency [2024/09/09 08:20] – [e.g. 1] hkimscil | b:head_first_statistics:measuring_central_tendency [2024/09/09 09:50] (current) – [mean] hkimscil | ||
---|---|---|---|
Line 31: | Line 31: | ||
\begin{equation*} | \begin{equation*} | ||
\begin{split} | \begin{split} | ||
- | \mu = \frac{\sum\limits_{}^{} \text{fx}}{\sum{\text{f}}} | + | \mu = \frac{\sum\limits_{}^{} \text{fx}}{\sum{\text{f.nothing}}} |
= \frac{1 \text{x} 19 + 3 \text{x} 20 + 1 \text{x} 21}{5} | = \frac{1 \text{x} 19 + 3 \text{x} 20 + 1 \text{x} 21}{5} | ||
\end{split} | \end{split} | ||
Line 203: | Line 203: | ||
> | > | ||
</ | </ | ||
- | |||
- | |||
- | |value | 1 | 4 | 6 | 8 | 9 | 10 | 11 | 12 | | ||
- | |freq | 1 | 1 | 2 | 3 | 4 | 4 | 5 | 5 | | ||
< | < | ||
Line 216: | Line 212: | ||
< | < | ||
{1, 1, 1, 2, 2, 2, 2, 2, 3, 31, 31, 31, 32, 32, 32, 32, 33, 33, 33} | {1, 1, 1, 2, 2, 2, 2, 2, 3, 31, 31, 31, 32, 32, 32, 32, 33, 33, 33} | ||
+ | </ | ||
+ | < | ||
+ | a <- c(1, 1, 1, 2, 2, 2, 2, 3, 3, 31, 31, 32, 32, 32, 32, 33, 33, 33) | ||
+ | b <- c(1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 31, 31, 32, 32, 32, 32, 33, 33, 33) | ||
+ | c <- c(1, 1, 1, 2, 2, 2, 2, 2, 3, 31, 31, 31, 32, 32, 32, 32, 33, 33, 33) | ||
+ | a | ||
+ | b | ||
+ | c | ||
+ | length(a) | ||
+ | length(b) | ||
+ | length(c) | ||
+ | mean(a) | ||
+ | mean(b) | ||
+ | mean(c) | ||
+ | median(a) | ||
+ | median(b) | ||
+ | median(c) | ||
+ | </ | ||
+ | < | ||
+ | # output | ||
+ | > a <- c(1, 1, 1, 2, 2, 2, 2, 3, 3, 31, 31, 32, 32, 32, 32, 33, 33, 33) | ||
+ | > b <- c(1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 31, 31, 32, 32, 32, 32, 33, 33, 33) | ||
+ | > c <- c(1, 1, 1, 2, 2, 2, 2, 2, 3, 31, 31, 31, 32, 32, 32, 32, 33, 33, 33) | ||
+ | > a | ||
+ | | ||
+ | > b | ||
+ | | ||
+ | > c | ||
+ | | ||
+ | > length(a) | ||
+ | [1] 18 | ||
+ | > length(b) | ||
+ | [1] 19 | ||
+ | > length(c) | ||
+ | [1] 19 | ||
+ | > mean(a) | ||
+ | [1] 17 | ||
+ | > mean(b) | ||
+ | [1] 16.21053 | ||
+ | > mean(c) | ||
+ | [1] 17.68421 | ||
+ | > median(a) | ||
+ | [1] 17 | ||
+ | > median(b) | ||
+ | [1] 3 | ||
+ | > median(c) | ||
+ | [1] 31 | ||
+ | > | ||
</ | </ | ||
Line 223: | Line 267: | ||
< | < | ||
## answer | ## answer | ||
+ | n <- 3+2+2 +3+4+4 | ||
+ | n | ||
+ | mean.duckc <- 17 | ||
+ | median.duckc <- 17 | ||
+ | tot <- mean.duckc * n | ||
+ | # 2 :: 4 인것은 이미 알고 있음 | ||
+ | known.sum <- (1*3)+(2*4)+(3*2)+(31*2) | ||
+ | tot - known.sum | ||
+ | # 227 = (32*4) + (33*3) 이므로 | ||
duckc <- c(1, | duckc <- c(1, | ||
mean(duckc) | mean(duckc) |
b/head_first_statistics/measuring_central_tendency.1725837645.txt.gz · Last modified: 2024/09/09 08:20 by hkimscil