Cold Storage Assignment Solution Ankur Jain
Cold Storage Assignment Solution Ankur Jain
Assignment Report
Submitted By
Ankur Jain
Table of Contents
1 Project Objective.............................................................................................................................3
2 Problem 1.........................................................................................................................................3
3 Problem 1 Solution – Step by step approach ..................................................................................3
4 Problem 2.........................................................................................................................................4
5 Problem 2 Solution – Step by step approach...................................................................................5
1 Project Objective
The objective of the report is to Solve SMDM Project Problem 1 using dataset
Cold_Storage_Temp_Data.csv and Problem 2 using dataset Cold_Storage_Mar2018.csv
2 Problem 1
Cold Storage started its operations in Jan 2016. They are in the business of storing Pasteurized Fresh
Whole or Skimmed Milk, Sweet Cream, Flavored Milk Drinks. To ensure that there is no change of
texture, body appearance, separation of fats the optimal temperature to be maintained is between 2
deg - 4 deg C.
In the first year of business they outsourced the plant maintenance work to a professional company
with stiff penalty clauses. It was agreed that if it was statistically proven that probability of
temperature going outside the 2 degrees - 4 degrees C during the one-year contract was above 2.5%
and less than 5% then the penalty would be 10% of AMC (annual maintenance case). In case it
exceeded 5% then the penalty would be 25% of the AMC fee. The average temperature data at date
level is given in the file “Cold_Storage_Temp_Data.csv”
1. Find mean cold storage temperature for Summer, Winter and Rainy Season (5 marks)
2. Find overall mean for the full year (5 marks)
3. Find Standard Deviation for the full year (5 marks)
4. Assume Normal distribution, what is the probability of temperature having fallen below 2 deg
C? (5 marks)
5. Assume Normal distribution, what is the probability of temperature having gone above 4 deg C? (5
marks)
6. What will be the penalty for the AMC Company? (5 marks)
1. Find mean cold storage temperature for summer, winter and Rainy Season
Mean temperature Values Season wise:
Summer: 3.153
Rainy: 3.039
Winter: 2.701
4 Problem 2
In Mar 2018, Cold Storage started getting complaints from their Clients that they have been getting
complaints from end consumers of the dairy products going sour and often smelling. On getting these
complaints, the supervisor pulls out data of last 35 days temperatures. As a safety measure, the
Supervisor has been vigilant to maintain the temperature below 3.9 deg C.
Assume 3.9 deg C as upper acceptable temperature range and at alpha = 0.1 do you feel that there is
need for some corrective action in the Cold Storage Plant or is it that the problem is from procurement
4|Page
side from where Cold Storage is getting the Dairy Products. The data of the last 35 days is in
“Cold_Storage_Mar2018.csv”
[Use the same standard deviation that you have calculated from the first problem wherever you
think is necessary]
sd(mydata1$Temperature)
[1] 0.159674
> Pstat.calculated = 2.75
> pnorm(2.75)
[1] 0.9970202
> pvalue = (1 - pt(0.86,34))
> pvalue
[1] 0.1979064
> t.test(mydata1$Temperature, mu = 3.974286, conf.level = 0.9)
data: mydata1$Temperature
t = -1.0586e-05, df = 34, p-value = 1
alternative hypothesis: true mean is not equal to 3.974286
90 percent confidence interval:
3.928648 4.019923
sample estimates:
mean of x 5|Page
3.974286
Hence Alternate Hypothesis is true.
Both Z test shows that fail to reject Hypothesis, so decision should be the problem is from
procurement side .
And P test shows we Null Hypothesis is Rejected and alternate hypothesis is true so decision should
be there is need for some corrective action in the Cold Storage Plant.
Both Test are showing different results. So We now look at the sample size that is only 35 which
small so P test is more significant in this case So we Accept T test Result Hence there is need for
some corrective action in the Cold Storage Plant.
6|Page