KApril
KApril

Reputation: 690

Auto SARIMA model in R

Is there a auto.sarima function in R programming. I know there is auto.arima function in r programming. But I am not sure if there is also auto.sarima function or program. If there is a way to generate the order of p,d,q and P,D,Q values, please let me know. I appreciate you help.

> data("departures")
> auto.arima(Enrolled_COUNT, D=1)
Series: Enrolled_COUNT 
ARIMA(0,1,1) 

Coefficients:
          ma1
      -0.4169
s.e.   0.1777

Upvotes: 2

Views: 5505

Answers (1)

cdcarrion
cdcarrion

Reputation: 590

The function auto.arima can detect the seasonal part by using the parameter seasonal = T as in the answer here.

Upvotes: 1

Related Questions