BookmarkSubscribeRSS Feed
mmansaray
Calcite | Level 5

Hi, I am trying to generate a generalized impulse response functions for some macroeconomics data. I would like to assess the response of y as a result of x caused by some exogenous features. I was wondering if the program below appears correct. Thas was taken from SAS examples:

proc varmax data=grunfeld plot=impulse;
   model y1-y3 = x1 x2 / p=1 lagmax=5
                         printform=univariate
                         print=(impulsx=(all) estimates);
run; 

 

3 REPLIES 3
dw_sas
SAS Employee

Hello,

 

The PRINT=(IMPULSX=(ALL)) option in PROC VARMAX produces the simple and accumulated impulse response function of the transfer function as described in Chapter 10 of Lutkepohl(2006).  This is different than the generalized IRFs as described in Pesaran and Shin (1998), however, the IMPULSX= option does allow you to assess the long-run responses of Y to an impulse in X.  Please see the documentation link below for more details and an example:

 

http://support.sas.com/documentation/cdl/en/etsug/68148/HTML/default/etsug_varmax_details05.htm#etsu... 

 

Hope this helps!

DW

mmansaray
Calcite | Level 5

ndeed, I was referring to the methodology proposed by Pesaran and Shin (1998). Well in the absence of this methodology, which you rightly explained, do you think this alternative would work?

 

 

proc varmax data=grunfeld plot=impulse;
   model y1-y3 = x1 x2 / p=1 lagmax=5
                         printform=univariate
                         print=(impulsx=(all) estimates);

mmansaray
Calcite | Level 5

Thank you. That would help.

 

Mahmud

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

Discussion stats
  • 3 replies
  • 1484 views
  • 0 likes
  • 2 in conversation