Rural {BSDA} | R Documentation |
Social adjustment scores for a rural group and a city group of children
Description
Data for Example 7.16
Usage
Rural
Format
A data frame/tibble with 33 observations on two variables
- score
child's social adjustment score
- area
character variable with values
city
andrural
References
Kitchens, L. J. (2003) Basic Statistics and Data Analysis. Pacific Grove, CA: Brooks/Cole, a division of Thomson Learning.
Examples
boxplot(score ~ area, data = Rural)
wilcox.test(score ~ area, data = Rural)
## Not run:
library(dplyr)
Rural <- dplyr::mutate(Rural, r = rank(score))
Rural
t.test(r ~ area, data = Rural)
## End(Not run)
[Package BSDA version 1.2.2 Index]