Hello I just finished the ARIMA Models in R course in Data Camp and would like run some ARIMA models.
the course used the astsa
for ARIMA modeling.
For this question I will using the sunspots
data though the data does not matter for the question
My packages
library(astsa)
Some data
Sun.ts <- sunspots
This function with run an AR(12) model with all the lags AR1 though AR12
sarima(Sun.ts, p = 12, d = 0, q = 0)
How can I do an AR or even a ARIMA model with say just 12th lag or 1 and 12?
Eventually for a project I will be doing a ARIMA model that should look something like this
sarima(my_data, p = c(12), d = c(1, 12), q = c(1, 12))
Where the model is only including those lags in parenthesis. I have done it in SAS but I want to do it in R.
SAS Code that is model I want to do in R
proc arima data=my_data;
identify var=Deaths(1, 12);
estimate p = (12) q = (1) (12) noint method=ml;
run;
Hello for the
sarima
function you need to use thefixed
argument to specify which coefficients you want.That is done by making a vector of NAs and not NAs. So for example I wanted a AR(1,12) model so I would need to make a vector that looks like this. With NA is the 1st index and NA in the 12th index. The last index being for the constant and if there is not a constant it needs to be blank.
Then use the
sarima
function.Then without the constant
I created an helper function to make parsimonious ARIMA models. This can be easily extended for the
sarima.for
p for parsimonious sarima.
In action This is an ARIMA with AR(12) and MA(2,3).
I am still learning about ARIMA models but for some reason doing this doesn't work.
Which I am not sure what is happening to make that occur. It has to do with differencing though.