<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to get the critical values for acf, pacf? in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-get-the-critical-values-for-acf-pacf/m-p/496378#M3347</link>
    <description>Using the PROC ARIMA procedure, we can have the confidence interval showing in the shaded area in the plots of ACF and PACF. The correspondence critical value is around 2 for a 95% CI.</description>
    <pubDate>Mon, 17 Sep 2018 19:23:29 GMT</pubDate>
    <dc:creator>YingZ</dc:creator>
    <dc:date>2018-09-17T19:23:29Z</dc:date>
    <item>
      <title>How to get the critical values for acf, pacf?</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-get-the-critical-values-for-acf-pacf/m-p/495353#M3340</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I use&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ods output Arima.Identify.AutoCorrGraph= ACF;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ods output Arima.Identify.PACFGraph = PACF;&lt;/P&gt;
&lt;P&gt;to output the acf, pacf for arima. But they do not have critical values. Is there anyway to get it? Thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Sep 2018 15:15:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-get-the-critical-values-for-acf-pacf/m-p/495353#M3340</guid>
      <dc:creator>happydog</dc:creator>
      <dc:date>2018-09-13T15:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the critical values for acf, pacf?</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-get-the-critical-values-for-acf-pacf/m-p/495560#M3342</link>
      <description>&lt;P&gt;Modif from a SAS Doc example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; proc arima data=seriesj plots(unpack)=all;
 /*--- Cross-correlation of prewhitened series ---------------*/
   identify var=y crosscorr=(x) nlag=12;
   ods output SeriesACFPlot=SAP SeriesPACFPlot=SPP;
   run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 14 Sep 2018 02:45:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-get-the-critical-values-for-acf-pacf/m-p/495560#M3342</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2018-09-14T02:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the critical values for acf, pacf?</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-get-the-critical-values-for-acf-pacf/m-p/496378#M3347</link>
      <description>Using the PROC ARIMA procedure, we can have the confidence interval showing in the shaded area in the plots of ACF and PACF. The correspondence critical value is around 2 for a 95% CI.</description>
      <pubDate>Mon, 17 Sep 2018 19:23:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-get-the-critical-values-for-acf-pacf/m-p/496378#M3347</guid>
      <dc:creator>YingZ</dc:creator>
      <dc:date>2018-09-17T19:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to get the critical values for acf, pacf?</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-get-the-critical-values-for-acf-pacf/m-p/496614#M3349</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/37915"&gt;@happydog&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The ODS OUTPUT data sets you created from PROC ARIMA&amp;nbsp;include the approximate upper and lower 95% confidence limits about the autocorrelations and partial autocorrelations for each lag.&amp;nbsp; These confidence limits allow you to determine the significance of the autocorrelation or partial autocorrelation at&amp;nbsp;each lag using an approximate alpha level of 0.05.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;P-values are more useful than critical values, since they can be used to determine significance&amp;nbsp;at different alpha levels.&amp;nbsp;&amp;nbsp;Since you are looking at the ACF and PACF associated with the original (or differenced) series computed by the IDENTIFY statement in PROC ARIMA, another alternative to see these&amp;nbsp;autocorrelation functions is PROC TIMESERIES.&amp;nbsp; The CORR statement in PROC TIMESERIES allows you to explicitly indicate&amp;nbsp;the&amp;nbsp;statistics to write to the OUTCORR= data set.&amp;nbsp;&amp;nbsp;These statistics include the ACFPROB and PACFPROB, which are the p-values associated with the autocorrelations and partial autocorrelations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Following, please find an example which compares the results of the OUTCOV= data set created by the IDENTIFY statement in PROC ARIMA, with the corresponding values written to the OUTCORR= data set by PROC TIMESERIES.&amp;nbsp; In addition to the autocorrelations and partial autocorrelations, the OUTCORR= data set generated by PROC TIMESERIES also includes the ACFPROB and PACFPROB variables when these options are specified in the CORR statement:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data air;
  set sashelp.air;
  y=log(air);
run;

proc arima data=air plots=all;
   identify var=y nlag=12 outcov=cov;
run;
quit;

proc timeseries data=air plots=corr outcorr=corr_pvals;
  id date interval=month;
  var y; 
  corr lag n acf pacf acfstd acfprob pacfprob / nlag=12;
run;

  /* data set generated by PROC ARIMA OUTCOV= option */
proc print data=cov;
  var lag n corr stderr partcorr;
run;

  /* data set generated by PROC TIMESERIES OUTCORR= option */
  /* which includes ACFPROB and PACFPROB variables         */
proc print data=corr_pvals;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For more details on PROC TIMESERIES, please see the following documentation link:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://go.documentation.sas.com/?docsetId=etsug&amp;amp;docsetTarget=etsug_timeseries_toc.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en" target="_self"&gt;https://go.documentation.sas.com/?docsetId=etsug&amp;amp;docsetTarget=etsug_timeseries_toc.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;
&lt;P&gt;DW&lt;/P&gt;</description>
      <pubDate>Tue, 18 Sep 2018 15:45:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-to-get-the-critical-values-for-acf-pacf/m-p/496614#M3349</guid>
      <dc:creator>dw_sas</dc:creator>
      <dc:date>2018-09-18T15:45:19Z</dc:date>
    </item>
  </channel>
</rss>

