Sports {BSDA} | R Documentation |
Favorite sport by gender
Description
Data for Exercise 8.32
Usage
Sports
Format
A data frame/tibble with 200 observations on two variables
- gender
a factor with levels
male
andfemale
- sport
a factor with levels
football
,basketball
,baseball
, andtennis
References
Kitchens, L. J. (2003) Basic Statistics and Data Analysis. Pacific Grove, CA: Brooks/Cole, a division of Thomson Learning.
Examples
T1 <- xtabs(~gender + sport, data = Sports)
T1
chisq.test(T1)
rm(T1)
[Package BSDA version 1.2.2 Index]