Need urgent help regarding this.

I am currently working on a project involving multiple time series forecasting using R. For the forecasting process, I have monthly data available from 2019 up to 2023.

Currently, I have generated baseline forecasts using R, specifically using ARIMA and ETS models. I have attached figures depicting the behavior of one of the time series along with its corresponding forecasted values based on the applied mathematical models.

However, I am facing an issue where most of the forecasted data does not seem to capture the seasonality well. The forecasts appear to be linear rather than capturing the expected seasonal patterns.

However, I am facing an issue where most of the forecasted data does not seem to capture the seasonality well. The forecasts appear to be linear rather than capturing the expected seasonal patterns.

Code:

t_data.fit = t_data %>%

model(arima=ARIMA(Demand)

)

More Sachin Chandrasekara's questions See All
Similar questions and discussions