Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

Grades

Test grades in a beginning statistics class


Description

Data for Exercise 1.120

Usage

Grades

Format

A data frame with 29 observations on one variable

grades

a numeric vector containing test grades

References

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

Examples

hist(Grades$grades, main = "", xlab = "Test grades", right = FALSE)

## Not run: 
library(ggplot2)
ggplot2::ggplot(data = Grades, aes(x = grades, y = ..density..)) + 
           geom_histogram(fill = "pink", binwidth = 5, color = "black") + 
           geom_density(lwd = 2, color = "red") + 
           theme_bw() 

## End(Not run)

BSDA

Basic Statistics and Data Analysis

v1.2.0
GPL (>= 2)
Authors
Alan T. Arnholt [aut, cre], Ben Evans [aut]
Initial release
2017-07-29

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.