Data for Exercise 5.24

Golf

Format

A data frame/tibble with 20 observations on one variable

yards

distance a golf ball is driven in yards

References

Kitchens, L. J. (2003) Basic Statistics and Data Analysis. Pacific Grove, CA: Brooks/Cole, a division of Thomson Learning.

Examples


stem(Golf$yards)
#> 
#>   The decimal point is 1 digit(s) to the right of the |
#> 
#>   23 | 89
#>   24 | 128
#>   25 | 11459
#>   26 | 12558
#>   27 | 01133
#> 
qqnorm(Golf$yards)
qqline(Golf$yards)


if (FALSE) {
library(ggplot2)
ggplot2::ggplot(data = Golf, aes(sample = yards)) + 
           geom_qq() + 
           theme_bw()
}