scores <- c(57,66,69,71,72,73,74,77,78,79,79,81,81,82,83,83,88,89,94)
summary(scores)
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 57.00 72.50 79.00 77.68 82.50 94.00
boxplot(scores)
#####1.50 Mix-and-match (a) close to normal distribution with very few outliers. Centered at x = 60 and range from 50 to 72. should be matched with (2).
(b) close to uniform distribution. Ranged from x = 0 to x = 100. should be matched with (3).
(c) Skewed to the left with a lot of outliers in the right side. Ranged from x = 0 to 8. should be matched with (1).