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

Hello,

 

Is there a way to calculate cross correlation function in SAS?

I already have graphical ccf plots from Proc ARIMA but would like to have substantial number instead of interpreting the number visually from the graph. I checked Proc Timeseries and Proc Corr but none of them seem to give such digital result. 

 

Thank you very much for your help. 

 

Cheers,

1 ACCEPTED SOLUTION
2 REPLIES 2
Reeza
Super User

PROC TIMESERIES does.

 

Time series analyses performed by the TIMESERIES procedure include the following:

  • descriptive (global) statistics

  • seasonal decomposition/adjustment analysis

  • correlation analysis

  • cross-correlation analysis

  • spectral analysis

 

What code did you use that didn't work?

 

proc sort data=sashelp.stocks out=stocks;
by stock date;
run;

proc timeseries data=stocks outcrosscorr=cross_correlations;
where stock='IBM';
    by stock           ;
   id date interval=month;
   format date yymon7.;
   var  open close high;
   crosscorr  ccf;
run;

 


@RealePrimavera wrote:

Hello,

 

Is there a way to calculate cross correlation function in SAS?

I already have graphical ccf plots from Proc ARIMA but would like to have substantial number instead of interpreting the number visually from the graph. I checked Proc Timeseries and Proc Corr but none of them seem to give such digital result. 

 

Thank you very much for your help. 

 

Cheers,


 

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 1733 views
  • 3 likes
  • 3 in conversation