BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Forecaster
Obsidian | Level 7

I'm trying to fit an arima model with intervention modeling using PROC ARIMA. See below for the transfer function form. I can specify the denominator, but I'm struggling to sepcify the numerator. Can you please let me know how I can specify the numerator for this intervention variable. (1-Bd) ?

 

Thank you

estimate input=( /(1) It );
   run;

Capture_arima.JPG

1 ACCEPTED SOLUTION

Accepted Solutions
rselukar
SAS Employee

The differencing of "It" must be done in the identify statement:

identify var=y crosscorr=It(5);

estimate input=( /(1) It );
   run;

 

ARIMA will estimate theta0, omega0, and delta1 for you.

View solution in original post

2 REPLIES 2
rselukar
SAS Employee

The differencing of "It" must be done in the identify statement:

identify var=y crosscorr=It(5);

estimate input=( /(1) It );
   run;

 

ARIMA will estimate theta0, omega0, and delta1 for you.

Forecaster
Obsidian | Level 7
Thank you rselukar, very helpful.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

Multiple Linear Regression in SAS

Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 1223 views
  • 1 like
  • 2 in conversation