Data for Example 1.8
Entrance
A data frame/tibble with 24 observations on one variable
college entrance exam score
Kitchens, L. J. (2003) Basic Statistics and Data Analysis. Pacific Grove, CA: Brooks/Cole, a division of Thomson Learning.
stem(Entrance$score)
#>
#> The decimal point is 1 digit(s) to the right of the |
#>
#> 4 | 38
#> 5 | 589
#> 6 | 2346689
#> 7 | 345579
#> 8 | 12346
#> 9 | 1
#>
stem(Entrance$score, scale = 2)
#>
#> The decimal point is 1 digit(s) to the right of the |
#>
#> 4 | 3
#> 4 | 8
#> 5 |
#> 5 | 589
#> 6 | 234
#> 6 | 6689
#> 7 | 34
#> 7 | 5579
#> 8 | 1234
#> 8 | 6
#> 9 | 1
#>