Habits {BSDA} | R Documentation |
Study habits of students in two matched school districts
Description
Data for Exercise 7.57
Usage
Habits
Format
A data frame/tibble with 11 observations on four variables
- A
study habit score
- B
study habit score
- differ
B
minusA
- signrks
the signed-ranked-differences
References
Kitchens, L. J. (2003) Basic Statistics and Data Analysis. Pacific Grove, CA: Brooks/Cole, a division of Thomson Learning.
Examples
shapiro.test(Habits$differ)
qqnorm(Habits$differ)
qqline(Habits$differ)
wilcox.test(Pair(B, A) ~ 1, data = Habits, alternative = "less")
t.test(Habits$signrks, alternative = "less")
## Not run:
library(ggplot2)
ggplot2::ggplot(data = Habits, aes(x = differ)) +
geom_dotplot(fill = "blue") +
theme_bw()
## End(Not run)
[Package BSDA version 1.2.2 Index]