Supercar {BSDA} | R Documentation |
Top speeds attained by five makes of supercars
Description
Data for Statistical Insight Chapter 10
Usage
Supercar
Format
A data frame/tibble with 30 observations on two variables
- speed
top speed (in miles per hour) of car without redlining
- car
name of sports car
Source
Car and Drvier (July 1995).
References
Kitchens, L. J. (2003) Basic Statistics and Data Analysis. Pacific Grove, CA: Brooks/Cole, a division of Thomson Learning.
Examples
boxplot(speed ~ car, data = Supercar, col = rainbow(6),
ylab = "Speed (mph)")
summary(aov(speed ~ car, data = Supercar))
anova(lm(speed ~ car, data = Supercar))
[Package BSDA version 1.2.2 Index]