Difference between revisions of "Worksheets/Week4"

From Statistics for Engineering
Jump to navigation Jump to search
Line 9: Line 9:
# S = Free shipping if order amount is €30 or more [-1],
# S = Free shipping if order amount is €30 or more [-1],
# or if order amount is over €50 [+1]
# or if order amount is over €50 [+1]
S <- c(-1, +1, -1, +1, -1, +1, -1, +1)
S = c(-1, +1, -1, +1, -1, +1, -1, +1)


# Does the purchaser need to create a profile first [+1] or not [-1]?
# Does the purchaser need to create a profile first [+1] or not [-1]?
P <- c(-1, -1, +1, +1, -1, -1, +1, +1)
P = c(-1, -1, +1, +1, -1, -1, +1, +1)


# Response: daily sales amount
# Response: daily sales amount
y <- c(348, 359, 327, 243, 356, 363, 296, 257)
y = c(348, 359, 327, 243, 356, 363, 296, 257)


# Linear model using S, P and S*P to predict the response
# Linear model using S, P and S*P to predict the response
model.sales <- lm(y ~ S*P)
model_sales = lm(y ~ S*P)
summary(model.sales)
summary(model_sales)


# Uncomment this line if you run the code in RStudio
# Uncomment this line if you run the code in RStudio
Line 26: Line 26:
source('https://yint.org/contourPlot.R')
source('https://yint.org/contourPlot.R')


contourPlot(model.sales)
contourPlot(model_sales)


# Uncomment and re-run these lines to understand  
# Uncomment and re-run these lines to understand  

Revision as of 14:38, 2 October 2019

Part 1

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 2

Continuing with the case above:

Part 3

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.