Project 1 Resubmission
Project 3
8th Dec
We discussed about the report writing and changes that need to be done and made few changes in the code for more accurate results.
6th Dec
The snippet for ACF and PACF is:
PACF :
ACF:
For ‘hotel_avg_daily_rate,’ the PACF indicates a notable spike at lag 1, followed by subsequent lags within the confidence range, suggesting an AR(1) element in the SARIMA model. The decreasing trend in the ACF suggests the need for differencing (d) to achieve stationarity and potentially a non-seasonal MA component.
On the other hand, ‘hotel_occup_rate’ exhibits a prominent initial spike in the PACF and significant seasonal spikes in the ACF, hinting at possible seasonal MA components. This points toward a SARIMA model with an AR(1) part and seasonal differencing, likely SARIMA(1,1,0)x(0,1,Q)12. Here, ‘Q’ relates to significant seasonal lags observed in the ACF plot. Determining the exact ‘Q’ value requires further scrutiny of these seasonal lags, yet the evident seasonality implies it wouldn’t be zero.
4th Dec
1st Dec
Forecasting involves using statistical models to predict future values of a variable, such as sales or economic indicators, by analyzing historical patterns. Its importance lies in aiding planning and decision-making, guiding strategies, budgeting resources, and managing inventory.
Forecasting finds application across various sectors: governments use it for policy planning, retail for inventory management, transportation for optimizing schedules, and finance for predicting market movements.
The process typically involves data collection, analysis, model selection, and generating forecasts. The choice of model depends on the data and goals, ranging from simple trend extensions to complex computer-based predictions. In our project, one method employed is SARIMA, or Seasonal AutoRegressive Integrated Moving Average, specifically suited for time series data with seasonal patterns like economic indicators.
29th Nov
In my latest update, I’ll continue from where I stopped before. I’ll show how I used Python to include the ADF and KPSS tests in my project. I’ll also talk about what I learned from the results of these tests and what they mean for my analysis. Here’s a piece of the code I used in Python
27th Nov
Stationarity matters because it affects how good our predictions about the future can be. When data isn’t stationary, our predictions might not be very accurate. To check if data is stationary or not, we use two tests: the ADF test and the KPSS test.
The ADF test helps us figure out if the data is changing too much over time. If the result is smaller than a certain number, it means the data is probably okay for making predictions. On the other hand, the KPSS test checks if there’s a pattern or trend in the data. If the result is higher than a specific number, it means there might be a trend that could mess up our predictions.
We also use something called the Autocorrelation Function (ACF) alongside these tests. ACF helps us see how data points relate to each other over time. This helps us pick the right tools to make predictions, especially for models that rely on understanding how data behaved in the past to guess what might happen next.
24th Nov
I present to you the main conclusions of our Time Series Analysis of the BPDA economic indicators dataset. Upon analyzing the data using statistical approaches, a few noteworthy patterns and trends have surfaced. We’ve included graphic representations of the patterns we’ve seen with this release.