Data for Exercise 1.46
Soccer
A data frame/tibble with 25 observations on one variable
soccer players weight (in pounds)
Kitchens, L. J. (2003) Basic Statistics and Data Analysis. Pacific Grove, CA: Brooks/Cole, a division of Thomson Learning.
stem(Soccer$weight, scale = 2)
#>
#> The decimal point is 1 digit(s) to the right of the |
#>
#> 11 | 7
#> 12 | 9
#> 13 | 26
#> 14 | 48
#> 15 | 014479
#> 16 | 0226
#> 17 | 3579
#> 18 | 34
#> 19 | 07
#> 20 | 9
#>
hist(Soccer$weight, breaks = seq(110, 210, 10), col = "orange",
main = "Problem 1.46 \n Weights of Soccer Players",
xlab = "weight (lbs)", right = FALSE)