p5.21: Data Set for Problem 5-21

p5.21R Documentation

Data Set for Problem 5-21

Description

The p5.21 data frame has 4 observations on 2 variables (replicated 4 times).

Usage

data(p5.21)

Format

This data frame contains the following columns:

Mix.Rate

a numeric vector

y1

a numeric vector

y2

a numeric vector

y3

a numeric vector

y4

a numeric vector

Source

Montgomery, D.C., Peck, E.A., and Vining, C.G. (2021) Introduction to Linear Regression Analysis. 6th Edition, John Wiley and Sons.

Examples

 cementStrength <- reshape(p5.21, idvar = "Mix.Rate", varying=list(2:5), 
    direction="long", v.names=c("TensileStrength"))
 rownames(cementStrength) <- NULL
 anova(lm(TensileStrength ~ Mix.Rate*time, data = cementStrength))

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

Related to p5.21 in MPV...