<?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 do I get the crosscorr table from PROC ARIMA in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-get-the-crosscorr-table-from-PROC-ARIMA/m-p/675381#M203484</link>
    <description>&lt;P&gt;This warning message confirms that the syntax of the ODS OUTPUT statement is now correct and indicates that a different issue prevents the creation of the desired table. I'm sorry I don't have a SAS/ETS license nor any experience with this module, so can't help you much with PROC ARIMA. My next steps in the investigation would be:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Is the graph (whose data the ODS table &lt;FONT face="courier new,courier"&gt;CrossCorrGraph&lt;/FONT&gt;&amp;nbsp;would contain) created at all?&lt;/LI&gt;
&lt;LI&gt;Any other graph (see &lt;A href="https://documentation.sas.com/?docsetId=etsug&amp;amp;docsetTarget=etsug_arima_details51.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en#etsug_arima007415" target="_blank" rel="noopener"&gt;ODS Graph Names&lt;/A&gt;)?&lt;/LI&gt;
&lt;LI&gt;After submitting &lt;FONT face="courier new,courier"&gt;ods graphics on;&lt;/FONT&gt; ?&lt;/LI&gt;
&lt;LI&gt;Does the procedure output (or other log messages) give any hint about issues with the input dataset?&lt;/LI&gt;
&lt;LI&gt;Temporarily simplify the code: omit the NOMISS option, omit the BY statement or replace it with a WHERE statement restricting the dataset to one of the BY groups.&lt;/LI&gt;
&lt;LI&gt;Use a working example, e.g., from the documentation (&lt;A href="https://documentation.sas.com/?docsetId=etsug&amp;amp;docsetTarget=etsug_arima_examples03.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en" target="_blank" rel="noopener"&gt;Example 7.3&lt;/A&gt; should be suitable) as a basis, add your ODS OUTPUT statement and, once this creates the &lt;FONT face="courier new,courier"&gt;CrossCorrGraph&lt;/FONT&gt; table, modify the code and the input dataset step by step so as to make it more and more similar to your actual code and data. Then you would see what change stops the creation of that table.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;If all the above doesn't help, I recommend that you open a new thread in the&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/bd-p/forecasting_econometrics" target="_blank" rel="noopener"&gt;SAS Forecasting and Econometrics&lt;/A&gt; subforum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Good luck!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 08 Aug 2020 12:53:29 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2020-08-08T12:53:29Z</dc:date>
    <item>
      <title>How do I get the crosscorr table from PROC ARIMA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-get-the-crosscorr-table-from-PROC-ARIMA/m-p/675188#M203398</link>
      <description>&lt;P&gt;I am computing the cross correlation of 2 variables. How do I get the results in a dataset? I had a look at this link I think I have to use&amp;nbsp;&lt;SPAN&gt;CrossCorrGraph but got an error message.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=etsug&amp;amp;docsetTarget=etsug_arima_details53.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en"&gt;https://documentation.sas.com/?docsetId=etsug&amp;amp;docsetTarget=etsug_arima_details53.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;here is my code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc arima data=sample; 
	by permno;
	identify var=r crosscorr=vol_change nlag=10 nomiss;
	ods output cc=CrossCorrGraph;
run;quit;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Aug 2020 07:32:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-get-the-crosscorr-table-from-PROC-ARIMA/m-p/675188#M203398</guid>
      <dc:creator>somebody</dc:creator>
      <dc:date>2020-08-07T07:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the crosscorr table from PROC ARIMA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-get-the-crosscorr-table-from-PROC-ARIMA/m-p/675194#M203402</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/98381"&gt;@somebody&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The &lt;A href="https://documentation.sas.com/?docsetId=odsug&amp;amp;docsetTarget=p0oxrbinw6fjuwn1x23qam6dntyd.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank" rel="noopener"&gt;syntax&lt;/A&gt; is&lt;/P&gt;
&lt;PRE&gt;ODS OUTPUT &lt;EM&gt;output-object-specification&lt;/EM&gt;=&lt;EM&gt;data-set&lt;/EM&gt;;&lt;/PRE&gt;
&lt;P&gt;i.e., in your example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods output CrossCorrGraph=cc;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 07 Aug 2020 08:20:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-get-the-crosscorr-table-from-PROC-ARIMA/m-p/675194#M203402</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2020-08-07T08:20:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the crosscorr table from PROC ARIMA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-get-the-crosscorr-table-from-PROC-ARIMA/m-p/675351#M203461</link>
      <description>&lt;P&gt;I tried that but got the following message:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;WARNING: Output 'CrossCorrGraph' was not created.  &lt;BR /&gt;Make sure that the output object name, label, or path is spelled correctly.  &lt;BR /&gt;Also, verify that the appropriate procedure options are used to produce the requested output object.  &lt;BR /&gt;For example, verify that the NOPRINT option is not used.
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 08 Aug 2020 01:56:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-get-the-crosscorr-table-from-PROC-ARIMA/m-p/675351#M203461</guid>
      <dc:creator>somebody</dc:creator>
      <dc:date>2020-08-08T01:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get the crosscorr table from PROC ARIMA</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-get-the-crosscorr-table-from-PROC-ARIMA/m-p/675381#M203484</link>
      <description>&lt;P&gt;This warning message confirms that the syntax of the ODS OUTPUT statement is now correct and indicates that a different issue prevents the creation of the desired table. I'm sorry I don't have a SAS/ETS license nor any experience with this module, so can't help you much with PROC ARIMA. My next steps in the investigation would be:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Is the graph (whose data the ODS table &lt;FONT face="courier new,courier"&gt;CrossCorrGraph&lt;/FONT&gt;&amp;nbsp;would contain) created at all?&lt;/LI&gt;
&lt;LI&gt;Any other graph (see &lt;A href="https://documentation.sas.com/?docsetId=etsug&amp;amp;docsetTarget=etsug_arima_details51.htm&amp;amp;docsetVersion=14.3&amp;amp;locale=en#etsug_arima007415" target="_blank" rel="noopener"&gt;ODS Graph Names&lt;/A&gt;)?&lt;/LI&gt;
&lt;LI&gt;After submitting &lt;FONT face="courier new,courier"&gt;ods graphics on;&lt;/FONT&gt; ?&lt;/LI&gt;
&lt;LI&gt;Does the procedure output (or other log messages) give any hint about issues with the input dataset?&lt;/LI&gt;
&lt;LI&gt;Temporarily simplify the code: omit the NOMISS option, omit the BY statement or replace it with a WHERE statement restricting the dataset to one of the BY groups.&lt;/LI&gt;
&lt;LI&gt;Use a working example, e.g., from the documentation (&lt;A href="https://documentation.sas.com/?docsetId=etsug&amp;amp;docsetTarget=etsug_arima_examples03.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en" target="_blank" rel="noopener"&gt;Example 7.3&lt;/A&gt; should be suitable) as a basis, add your ODS OUTPUT statement and, once this creates the &lt;FONT face="courier new,courier"&gt;CrossCorrGraph&lt;/FONT&gt; table, modify the code and the input dataset step by step so as to make it more and more similar to your actual code and data. Then you would see what change stops the creation of that table.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;If all the above doesn't help, I recommend that you open a new thread in the&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/bd-p/forecasting_econometrics" target="_blank" rel="noopener"&gt;SAS Forecasting and Econometrics&lt;/A&gt; subforum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Good luck!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 08 Aug 2020 12:53:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-get-the-crosscorr-table-from-PROC-ARIMA/m-p/675381#M203484</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2020-08-08T12:53:29Z</dc:date>
    </item>
  </channel>
</rss>

