“non-stationary seasonal AR part from CSS” error in R

后端 未结 1 1104
一个人的身影
一个人的身影 2021-02-05 07:38

I am trying to fit ARIMA model of a seasonally decomposed series. But when I try to execure following:

fit = arima(diff(series), order=c(1,0,0),
   seasonal = li         


        
相关标签:
1条回答
  • 2021-02-05 08:19

    When using CSS (conditional sum of squares), it is possible for the autoregressive coefficients to be non-stationary (i.e., they fall outside the region for stationary processes). In the case of the ARIMA(1,0,0)(1,0,0)s model that you are fitting, both coefficients should be between -1 and 1 for the process to be stationary.

    You can force R to use MLE (maximum likelihood estimation) instead by using the argument method="ML". This is slower but gives better estimates and always returns a stationary model.

    If you are differencing the series (as you are here), it is usually better to do this via the model rather than explicitly. So your model would be better estimated using

    set.seed(1)
    series <- ts(rnorm(100),f=6)
    fit <- arima(series, order=c(1,1,0), seasonal=list(order=c(1,0,0),period=NA), 
             method="ML")
    
    0 讨论(0)
提交回复
热议问题