<?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 capture ChiSqAuto from Proc Arima with BY statement in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-do-I-capture-ChiSqAuto-from-Proc-Arima-with-BY-statement/m-p/375677#M2518</link>
    <description>&lt;P&gt;For most procedures, NOPRINT means no ODS. There are unfortunate exceptions, so check the documentation to find the options that suppress printing. &amp;nbsp;You can't use ODS OUTPUT on a table that was suppressed by NOPRINT or some other no printing option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are experiencing that kind of performance issues, please enter a ticke with tech support. &amp;nbsp;They can help you with that better than me.&amp;nbsp;&lt;A href="http://support.sas.com/ctx/supportform/createForm&amp;nbsp;" target="_blank"&gt;http://support.sas.com/ctx/supportform/createForm&amp;nbsp;&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 13 Jul 2017 13:10:04 GMT</pubDate>
    <dc:creator>WarrenKuhfeld</dc:creator>
    <dc:date>2017-07-13T13:10:04Z</dc:date>
    <item>
      <title>How do I capture ChiSqAuto from Proc Arima with BY statement</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-do-I-capture-ChiSqAuto-from-Proc-Arima-with-BY-statement/m-p/375605#M2515</link>
      <description>&lt;P&gt;I am running SAS 9.4 and I am trying to use ods output to capture the ChiSqAuto output across a proc arima which includes a by statement. &amp;nbsp;I cannot find qstats after the code is run. &amp;nbsp;It does not seem to be created.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods output ChiSqAuto(persist=proc)=qstats;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc arima data = all;&lt;BR /&gt;&amp;nbsp; identify var=dror noprint;&lt;BR /&gt;&amp;nbsp; estimate noprint q=2 noconstant method=ml outest=arima_a (where=(_type_='EST') keep=_type_ _status_ ma1_1 ma1_2 source &amp;nbsp; &amp;nbsp; &amp;nbsp; id);&lt;BR /&gt;&amp;nbsp; by source id;&lt;BR /&gt;&amp;nbsp; run;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2017 10:13:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-do-I-capture-ChiSqAuto-from-Proc-Arima-with-BY-statement/m-p/375605#M2515</guid>
      <dc:creator>dspsas</dc:creator>
      <dc:date>2017-07-13T10:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: How do I capture ChiSqAuto from Proc Arima with BY statement</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-do-I-capture-ChiSqAuto-from-Proc-Arima-with-BY-statement/m-p/375616#M2516</link>
      <description>&lt;P&gt;Since I did not have your data, I just simplified a bit and used a sashelp data set. &amp;nbsp;This runs. &amp;nbsp;I don't use persist much. &amp;nbsp;Why do you want it here? &amp;nbsp;I think it is good practice to put the ods output statement with the proc code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;ods trace on;
proc arima data = sashelp.iris;
  ods output ChiSqAuto=qstats;
  identify var=petalwidth;
  estimate noprint q=2 noconstant method=ml outest=arima_a (where=(_type_='EST'));
  by species;
  run;

proc print data=qstats; run;&lt;/PRE&gt;</description>
      <pubDate>Thu, 13 Jul 2017 11:04:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-do-I-capture-ChiSqAuto-from-Proc-Arima-with-BY-statement/m-p/375616#M2516</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-07-13T11:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: How do I capture ChiSqAuto from Proc Arima with BY statement</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-do-I-capture-ChiSqAuto-from-Proc-Arima-with-BY-statement/m-p/375675#M2517</link>
      <description>&lt;P&gt;Thank you. &amp;nbsp;It seems the key difference to making it work is the removal of noprint from the identify statement. &amp;nbsp;Do you know why this matters? &amp;nbsp;Also, the proc arima used to run across my dataset (2300 different by variables, about 100 obs per run) in less than a minute. It has been running for an hour and is still running. &amp;nbsp;Would appreciate any thoughts you have on why the massive decrease in speed.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2017 12:54:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-do-I-capture-ChiSqAuto-from-Proc-Arima-with-BY-statement/m-p/375675#M2517</guid>
      <dc:creator>dspsas</dc:creator>
      <dc:date>2017-07-13T12:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: How do I capture ChiSqAuto from Proc Arima with BY statement</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-do-I-capture-ChiSqAuto-from-Proc-Arima-with-BY-statement/m-p/375677#M2518</link>
      <description>&lt;P&gt;For most procedures, NOPRINT means no ODS. There are unfortunate exceptions, so check the documentation to find the options that suppress printing. &amp;nbsp;You can't use ODS OUTPUT on a table that was suppressed by NOPRINT or some other no printing option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are experiencing that kind of performance issues, please enter a ticke with tech support. &amp;nbsp;They can help you with that better than me.&amp;nbsp;&lt;A href="http://support.sas.com/ctx/supportform/createForm&amp;nbsp;" target="_blank"&gt;http://support.sas.com/ctx/supportform/createForm&amp;nbsp;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jul 2017 13:10:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/How-do-I-capture-ChiSqAuto-from-Proc-Arima-with-BY-statement/m-p/375677#M2518</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-07-13T13:10:04Z</dc:date>
    </item>
  </channel>
</rss>

