Follow the instructions below:
Once you have finished solving the exercises, be sure to commit your changes, push them to your repository, and go to 4Geeks.com to upload the repository link.
We want to set up our company's warehouse in another location and we need to estimate the rate of sales, which has been increasing since the company's creation, for the next few months in order to provide the space we will need.
The dataset can be found in this project folder under the name sales.csv
. You can load it into the code directly from the link:
1https://raw.githubusercontent.com/4GeeksAcademy/alternative-time-series-project/main/sales.csv
Or download it and add it by hand in your repository.
Construct the valid data structure for the time serie, graph it, and then analyze it and answer the following questions:
Note: A
tensor
in a time serie is the minimum unit of time for which there is data. It can be every second, minute, hour, day, week, month...
Use the training data to find the best parameterization of your ARIMA model.
Now use the trained model with the test set and compare the points with the real ones. Measure the performance of the time serie.
Store the model in the corresponding folder.
Note: We also incorporated the solution samples on
./solution.ipynb
that we strongly suggest you only use if you are stuck for more than 30 min or if you have already finished and want to compare it with your approach.