How to change a negative trend #1253
-
So I am generating a forecast for a dataset that always shows a negative trend. I removed outliers from the data and tried tuning the parameters. I also tried to clip the forecast result so it doesn't produce negative forecasts. I am not being able to change the downward trend. Do you have any suggestions on how to handle this situation? Parameters I'm using: params = dict(weekly_seasonality = False, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I have also added custom changepoints, set trend_reg_threshold to true and newer_samples_weight to 4, |
Beta Was this translation helpful? Give feedback.
Hi @sohanasarah could you please share about the data you are looking at? I assume the green curve is the input time series, which would mean that you are trying to forecast 5 years into the future, which seems a lot to me. Does the same occur for a smaller forecast scope?
Also, you have not activated autoregression yet (using
n_lags
as a param). This accounts for the autocorrelation of the time series. I can imagine this to be what you are looking for