Skip to content

Problem about SARMA model forcasting

3 messages · Saji Ren

1 day later
#
Somebody suggest that all the intial values are zero.
So I followed this suggestion and used below formulas to compute the
forcast in Excel

when t < 46,
a(t)=0;

when t >= 46,
a(t)=X(t) - ar1*X(t-1) - X(t-45) + ar1*X(t-46) + ma1*a(t-1) + sma1*a
(t-45) - ma1*sma1*a(t-46);

X(predict) = ar1*X(t-1) + X(t-45) - ar1*X(t-46) - ma1*a(t-1) - sma1*a
(t-45) + ma1*sma1*a(t-46);

But the predict values are not the same as what I got from R software.
The time series is non-negative. But there are negative value in what
I got from Excel using the above formula.
So there must be something wrong. And I just don't where the mistake
is.


saji from Shanghai
On 2?9?, ??7?54?, Saji Ren <saji.... at gmail.com> wrote:
#
Somebody said that ARIMA models like discussed above are easy to
implement on a spreadsheet.
The prediction formula is simply a linear equation that refers to past
values of original time series and past values of the errors.
Thus, setting up an spreadsheet by stroing the data in one column, the
forcasting values computed bu the formula in another column, and the
errors(data minus forcasts) in the third column can give the results
just as the same as any statistical computing software(like R).
But I just can't, and I think there must be some mistakes in my
procedure but just can't find it by myself.
Really need helps!
Thanks again!

saji from Shanghai
On 2?11?, ??7?54?, saji <saji.... at gmail.com> wrote: