Page 1 of 1

AR(4) vs SAR(4)

Posted: Fri Oct 10, 2008 6:47 am
by rodo
Hi, first of all, it is a great idea to have created this forum ! this was missing and will undoubtedly be of a great help for all of us.

My question: what difference between the AR(4) and SAR(4) components ? I didn't find a clear answer in the manual.

Thanks.

Re: AR(4) vs SAR(4)

Posted: Fri Oct 10, 2008 8:39 am
by EViews Gareth
Mathematically you can represent an AR(1) term as:

Code: Select all

(1-pL)ut
where L is the lag operator.

An AR(1) AR(2) representation is:

Code: Select all

(1-p1L - p2L^2)u
A seasonal AR term just adds another level to this. An AR(1), AR(2) SAR(1) can be represented as:

Code: Select all

(1-p1L - p2L^2)(1-sL)u
where S is the seaonal AR term.

Note that if you don't have an AR term, then applying an SAR term is exactly the same as applying an AR term. i.e. the equation

Code: Select all

y c x ar(1)
is exactly the same as

Code: Select all

y c x sar(1)
I guess you can think of SAR terms as giving you the ability to apply an AR to an AR. :D

Hopefully someone who's a bit better at explaining Time Series can chime in with a better explanation in words.

Re: AR(4) vs SAR(4)

Posted: Sat Oct 11, 2008 1:30 am
by rodo
OK great, thanks !!
Note that if you don't have an AR term, then applying an SAR term is exactly the same as applying an AR term. i.e. the equation
That is the key !