Difference between revisions of "Worksheets/Week3"

From Statistics for Engineering
Jump to navigation Jump to search
Line 53: Line 53:
# Response y is the amount of side product formed, y [grams]
# Response y is the amount of side product formed, y [grams]
y <- c(89, 268, 179, 448, 186, 290)
y <- c(89, 268, 179, 448, 186, 290)
mod.siderxn.cp <- lm(y ~ A + B + A*B)
model.siderxn.cp <- lm(y ~ A + B + A*B)
summary(mod.siderxn.cp)
summary(model.siderxn.cp)


# Uncomment this line if you run the code in RStudio
# Uncomment this line if you run the code in RStudio
Line 61: Line 61:
# Comment this line if you run this code in RStudio
# Comment this line if you run this code in RStudio
source('https://yint.org/contourPlot.R')
source('https://yint.org/contourPlot.R')
contourPlot(mod.siderxn.cp)
contourPlot(model.siderxn.cp)
     </code>
     </code>
</div></html>
</div></html>

Revision as of 08:47, 11 March 2019

Part 1

A factorial experiment was run to investigate the settings that minimize the production of an unwanted side product. The two factors being investigated are called A and B for simplicity.

Part 2

Continuing from above, with 2 extra experimental points:

Part 3

Your family runs a small business selling products online. The first factor of interest is whether to provide free shipping over €30 or over €50. The second factor is whether or not the purchaser must first create a profile before completing the transaction. The purchaser can still complete their transaction without creating a profile. Below are the data collected, showing the 8 experiments.


Part 4

Continuing with the case above:

Part 5

Your group is developing a new product, but have been struggling to get the product’s stability, measured in days, to the level required. You are aiming for a stability value of 50 days or more.