Disclaimer: I am self taught code monkey, without foundational knowledge. But can make things work... Eventually...
I have three data points that represent average daily usage of a product between that point and the last:
My table doesn't contain dates in between, only reported volume dates (from which the average daily usage between two points is calculated). In reality the table I need should look like this:
If I use standard deviation formula, I can only reference the three points I have. But, for a correct, standard deviation I need to reference all points broken out. Is there some clever way for me to achieve this? I created a table in Excel sheets to see what the difference between standard deviation is between the 3 points and the 10 points:
*3 points: Std dev = 2.80
*10 points: STD dev = 2.13
This difference makes a big change in the end calculation I am doing with the standard deviation (inventory reorder point & safety stock calculation).
Any help you can offer would be appreciated! Let me know if more detail needed.
I have three data points that represent average daily usage of a product between that point and the last:
16APR | 20APR | 23APR |
5.09 | 0.53 | 0 |
My table doesn't contain dates in between, only reported volume dates (from which the average daily usage between two points is calculated). In reality the table I need should look like this:
14th | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 |
5.09 | 5.09 | 0.53 | 0.53 | 0.53 | 0.53 | 0.53 | 0 | 0 | 0 |
If I use standard deviation formula, I can only reference the three points I have. But, for a correct, standard deviation I need to reference all points broken out. Is there some clever way for me to achieve this? I created a table in Excel sheets to see what the difference between standard deviation is between the 3 points and the 10 points:
*3 points: Std dev = 2.80
*10 points: STD dev = 2.13
This difference makes a big change in the end calculation I am doing with the standard deviation (inventory reorder point & safety stock calculation).
Any help you can offer would be appreciated! Let me know if more detail needed.