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,
You want the OUTCOV= option of the IDENTIFY statement.
You want the OUTCOV= option of the IDENTIFY statement.
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 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.