- Course Overview
- Statistical review (continued)
- Brief history of testing
- Norms and sampling
R in class and on assignmentsR do the work
pnorm(650, mean = 500, sd = 100) * 1000
# 933.1928
qnorm(330/1000, mean = 500, sd = 150)
# 456.0087
| X | Y | |
|---|---|---|
| 5 | 6 | |
| 3 | 0 | |
| 1 | 0 | |
| Mean | 3 | 2 |
R
# Assign X the values of 5, 3, 1 and Y the values of 6, 0, and 0
x <- c(5, 3, 1)
y <- c(6, 0, 0)
# Calculate the correlation
cor(x , y)
# 0.8660254
| Coefficient | Estimate |
|---|---|
| Intercept | 25.723456 |
| Slope | 0.287249 |