Learn R Programming

BSDA (version 1.01)

Bumpers: Repair costs of vehicles crashed into a barrier at 5 miles per hour

Description

Data for Exercise 1.73

Usage

Bumpers

Arguments

Format

A data frame with 23 observations on the following 2 variables.

Car

a factor with levels Buick Century Buick Skylark Chevrolet Cavalier Chevrolet Corsica Chevrolet Lumina Dodge Dynasty Dodge Monaco Ford Taurus Ford Tempo Honda Accord Hyundai Sonata Mazda 626 Mitsubishi Galant Nissan Stanza Oldsmobile Calais Oldsmobile Ciere Plymouth Acclaim Pontiac 6000 Pontiac Grand Am Pontiac Sunbird Saturn SL2 Subaru Legacy Toyota Camry

repair

a numeric vector

Examples

Run this code
# NOT RUN {
str(Bumpers)
attach(Bumpers)
EDA(repair)
sum(repair>(mean(repair)-sd(repair)) & 
repair < (mean(repair)+sd(repair)))/length(repair)
stripchart(repair,method="stack")
library(lattice)
dotplot(Car~repair)
detach(Bumpers)
# }

Run the code above in your browser using DataLab