Saving {BSDA} | R Documentation |
Problem asset ration for savings and loan companies in California, New York, and Texas
Description
Data for Exercise 10.34 and 10.49
Usage
Saving
Format
A data frame/tibble with 65 observations on two variables
- par
problem-asset-ratio for Savings & Loans that were listed as being financially troubled in 1992
- state
U.S. state
References
Kitchens, L. J. (2003) Basic Statistics and Data Analysis. Pacific Grove, CA: Brooks/Cole, a division of Thomson Learning.
Examples
boxplot(par ~ state, data = Saving, col = "red")
boxplot(par ~ state, data = Saving, log = "y", col = "red")
model <- aov(par ~ state, data = Saving)
summary(model)
plot(TukeyHSD(model))
kruskal.test(par ~ factor(state), data = Saving)
[Package BSDA version 1.2.2 Index]