p5.11: Data Set for Problem 5-11 of the Third Edition of MPV

p5.11R Documentation

Data Set for Problem 5-11 of the Third Edition of MPV

Description

The p5.11 data frame has 8 observations on an experiment with a catapult. This data set is used in Exercise 5.13 of the 6th edition of MPV.

Usage

data(p5.11)

Format

This data frame contains the following columns:

x1

hook

x2

arm length

x3

start angle

x4

stop angle

yi1

response 1

yi2

response 2

yi3

response 3

Source

Montgomery, D.C., Peck, E.A., and Vining, C.G. (2001) Introduction to Linear Regression Analysis. 3rd Edition, John Wiley and Sons.

See Also

p5.13

Examples

attach(p5.11)
ybar.i <- apply(p5.11[,5:7], 1, mean)
sd.i <- apply(p5.11[,5:7], 1, sd)
y.lm <- lm(ybar.i ~ x1 + x2 + x3 + x4)
plot(y.lm, which=1)
detach(p5.11)

MPV documentation built on Sept. 8, 2023, 5:44 p.m.

Related to p5.11 in MPV...