Starting from:
$30

$24

Chapter 11, Section 11.2,

1.

Chapter 11, Section 11.2, Exercise 16 a b c e. “In an experiment to assess … curing time …” Give the F statistic, rejection region, and conclusion for parts (b) and (c).
For the T Method (underscoring) procedure in part e, see Formula 11I.

Use Formula 11H to find the df's.

2.
Chapter 11, Section 11.2, Exercise 18

Assume a two-way interaction model with fixed-effects. The ANOVA table and interaction plot are given below.




a. At the α=.05 level of significance, which effects (Formulation, Speed, Formulation-Speed interaction) are significant? Give corresponding P-values.

c. Refer to the interaction plot.

i. Which level combination of Formulation and Speed gives the highest value of Yield on average? ii. Compute the fitted value for this combination.

You can use the following code for producing the ANOVA table and plot in R. library(Devore7) ##You need to install this package if you are using it for the first time


    • intall.packages(“Devore7”) data(ex11.16) out=aov(Response~Formulat*Speed,data=ex11.16) summary(out)


with(ex11.16, {

interaction.plot(Formulat, Speed, Response, trace.label = "speed", fixed = TRUE, lwd=2)

})

More products