Learn R Programming

BSDA (version 0.1)

Challeng: Temperatures and O-ring failures for the launches of the space shuttle Challenger

Description

Data for Examples 1.11, 1.12, 1.13, 2.11 and 5.1

Usage

Challeng

Arguments

source

Kitchens, L. J. (2003) Basic Statistics and Data Analysis. Duxbury

Examples

Run this code
str(Challeng)
attach(Challeng)
stem(temp)
summary(temp)
IQR(temp)
quantile(temp)
fivenum(temp)
stem(sort(temp)[-1])
summary(sort(temp)[-1])
IQR(sort(temp)[-1])
quantile(sort(temp)[-1])
fivenum(sort(temp)[-1])
par(mfrow=c(1,2))
qqnorm(temp)
qqline(temp)
qqnorm(sort(temp)[-1])
qqline(sort(temp)[-1])
par(mfrow=c(1,1))
detach(Challeng)

Run the code above in your browser using DataLab