Can Autocorrelation Affect Exponential Smoothing Results?

  • Context: Undergrad 
  • Thread starter Thread starter neznam
  • Start date Start date
  • Tags Tags
    Exponential
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 3K views
neznam
Messages
15
Reaction score
0
Hi,
I have a conceptual question. Looking at exponential smoothing methods I came across relationship between the autocorrelation function and lambda. It says that if the time series doesn't apper to be autocorrelated then lambda is expected to have a low value :confused: .Any help will be appreciated.

1st order exponential smoothing
y(t)tilda=λ*y(t)+(1-λ)*y(t-1)tilda
where λ=1-θ
and θ represents the weights
 
Physics news on Phys.org
Hello, in many statistical tests, inferences or applications, personal judgement is required. I would rephrase your statement to "If the time series appears to not be auto-correlated, we should set lambda to a low value." After all, choosing lambda is a personal judgement on the part of the statistician, there is no "expectation of lambda" here.

so:

forecast(t)= lambda*observation(t-1) + (1-lambda)*forecast(t-1)

So if the time series appears correlated, then lambda should be set to a high value. Thereafter, forecast(t) will depend highly on observation(t-1) and less on forecast(t-1).
 
Thanks a lot. That makes a lot of sense now :-)