| Bigten {BSDA} | R Documentation |
Graduation rates for student athletes and nonathletes in the Big Ten Conf.
Description
Data for Exercises 1.124 and 2.94
Usage
Bigten
Format
A data frame/tibble with 44 observations on the following four variables
- school
a factor with levels
Illinois,Indiana,Iowa,Michigan,Michigan State,Minnesota,Northwestern,Ohio State,Penn State,Purdue, andWisconsin- rate
graduation rate
- year
factor with two levels
1984-1985and1993-1994- status
factor with two levels
athleteandstudent
Source
NCAA Graduation Rates Report, 2000.
References
Kitchens, L. J. (2003) Basic Statistics and Data Analysis. Pacific Grove, CA: Brooks/Cole, a division of Thomson Learning.
Examples
boxplot(rate ~ status, data = subset(Bigten, year = "1993-1994"),
horizontal = TRUE, main = "Graduation Rates 1993-1994")
with(data = Bigten,
tapply(rate, list(year, status), mean)
)
[Package BSDA version 1.2.2 Index]