Learn R Programming

BSDA (version 1.2.1)

Supercar: Top speeds attained by five makes of supercars

Description

Data for Statistical Insight Chapter 10

Usage

Supercar

Arguments

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

References

Kitchens, L. J. (2003) Basic Statistics and Data Analysis. Pacific Grove, CA: Brooks/Cole, a division of Thomson Learning.

Examples

Run this code

boxplot(speed ~ car, data = Supercar, col = rainbow(6),
        ylab = "Speed (mph)")
summary(aov(speed ~ car, data = Supercar))
anova(lm(speed ~ car, data = Supercar))

Run the code above in your browser using DataLab