Skip to content

ARIMA estimation

3 messages · Stefano Colucci, Brian Ripley, Romain Francois

#
On Thu, 19 May 2005, Stefano Colucci wrote:

            
See the argument 'fixed', which allows you to choose which coefficients to 
estimate.
#
Le 19.05.2005 09:23, Stefano Colucci a ??crit :
You can fix coefs to what you want by using the parameter fixed in the 
arima call.

arima(x,fixed=c(NA,0,NA),order=c(3,0,0))

will fit an arima(p=3,i=0,q=0) with \phi_2 fixed to zero.

Maybe you'll be interested in graph 29 in the graph gallery : 
http://addictedtor.free.fr/graphiques/
See
http://addictedtor.free.fr/graphiques/RGraphGallery.php?graph=29

Romain