I have a set of data referring to the sales that a company had in the past 90 days.I need to determine the distribution that this data may come from in order to use it in R. If I know the distribution, I can use different functions to generate numbers that respect that distribution (for example, rrnorm or rrpois) and to simulate the stocks(how many products of that type) that this company will own in the future, after a certain amount of time. My data looks like this:
- day 1:30
- day 2:32
- day 3:35
- day 4:37
- day 5:36
- day 6:32
- day 7:28
- day 8:35
- day 9:33
- day 10:30
And so on. More specifically, I need to find what theoretical distribution the sales follow and use that as my demand distribution in a stock.inventory management simulation. I only need the way that I could do this, not the actual result, because I cannot give you all the data I have, because it`s confidential. Could someone please help me?