BookmarkSubscribeRSS Feed
rmtcbi
Calcite | Level 5

I am having issues specifying the output table for the cross correlation (ChiSqCross) function within proc arima.  However, I have no issue for the ADF test (StationarityTests).

 

proc arima data = Base;
identify var = CPNGE(1) stationarity = (adf) crosscorr = (RGDP(1)  Unemp(1)  Petro_Dem(1)) nlag=6; 
ods output ChiSqCross = _cc;
run;
quit;
ods listing;

 

The code above works perfectly if you replace "ChiSqCross" with "StationarityTests"

The next step is to customize the information from the cross correlation analysis and send to Excel, but I first need the table. Any insight would be much appreciated!

 

-Ryan

1 REPLY 1
rmtcbi
Calcite | Level 5

Figured it out - had the wrong table name it appears. Should have been "CrossCorrGraph"

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.

Explore Now →
How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1470 views
  • 0 likes
  • 1 in conversation