Project - Cold Storage Case Study
Project - Cold Storage Case Study
Problem 1
Question 1:
Season Winter Summer Rainy
Mean of Temperature 2.7 3.15 3.04
3.1
2.9
2.8
2.7
2.6
2.5
2.4
WINTER SUMMER RAINY
Question 2:
Over all mean for the full year is 2.964131 (this result is arrived using excel function
AVERAGE (data range)
Question 3:
The standard deviation for the full year is 0.507892 (this result is arrived using excel function
STDEV.P(data range)
Question 4:
The probability of temperature having fallen below 2-degree Celsius is 0.02742895
View(K2_Cold_Storage_Temp_Data)
> help("pnorm")
> # P(X < 2)
> pnorm(q=2,mean = 2.96, sd = 0.50, lower.tail = TRUE)
[1] 0.02742895
Chart Title
0.9
0.8
0.7
0.6
0.5
0.4
0.3
0.2
0.1
0
0 1 2 3 4 5 6
Question 5:
View(K2_Cold_Storage_Temp_Data)
> help("pnorm")
> # P(X > 4)
> pnorm(q=4, mean = 2.96, sd = 0.50, lower.tail = FALSE)
[1] 0.01876277
Question 6:
The penalty of AMC company will be 10% as the probability of temperature has gone above
2.5% and is less than 5%.
Problem 2
Question 1:
Hypothesis using the z test
Question 2:
Question 3:
The inference after doing both the test is Null Hypothesis is rejected. The reason for the same is
the “temperature variation” and not “Procurement”. In the data provided in 2016 also we saw the
temperature had also gone above the prescribed penalty level and the AMC company was
charged with a penalty of 10%.