<?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: Control Output of ARIMA Procedure in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Control-Output-of-ARIMA-Procedure/m-p/321026#M17578</link>
    <description>&lt;P&gt;Perfect. ODS SELECT was exactly what I needed. Thanks Cynthia!&lt;/P&gt;</description>
    <pubDate>Sat, 24 Dec 2016 04:53:14 GMT</pubDate>
    <dc:creator>Aaron_01</dc:creator>
    <dc:date>2016-12-24T04:53:14Z</dc:date>
    <item>
      <title>Control Output of ARIMA Procedure</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Control-Output-of-ARIMA-Procedure/m-p/321005#M17575</link>
      <description>&lt;P&gt;Hi All - relatively new SAS user here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a macro that uses a do loop to iterate the ARIMA procedure, making certain adjustments on each iteration based on the results of the proc's outlier detection feature. With each iteration, the macro prints only the outlier detection summary and details, suppressing all the other tables and plots. This is achieved by using "noprint" on the "identify" and "estimate" statements:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc arima data=MyData;
	identify var=indpro(1) noprint;
	estimate p=1 q=2 method=ML noprint;
	outlier maxnum=30 alpha=0.005;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This works well, however I would also like to include a plot of the white noise probabilities in the output of each iteration. This is one of the standard plots produced by the ARIMA procedure, and I can isolate the plot in the output by specifying "plots(only)=residual(WN)":&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc arima data=MyData plots(only)=residual(WN);
	identify var=indpro(1) noprint;
	estimate p=1 q=2 method=ML;
	outlier maxnum=30 alpha=0.005;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The problem with this is that it will only show the plot in question if I remove the "noprint" statement from the "estimate" line. Once I do so, the plot is included in the output as desired, however all the other standard tables produced by the estimate&amp;nbsp;statement are also printed, which I do not want.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to isolate the white noise plot and print it in the output without all the other standard tables produced by the estimate statement? I ran ods trace to identify the name of the specific plot I'm looking for, in case that helps:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Name: ResidualWNPlot&lt;BR /&gt;Label: Residual White Noise Plot&lt;BR /&gt;Template: ets.arima.Graphics.WNPlot&lt;BR /&gt;Path: Arima.Estimate.ResidualWNPlot&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions would be appreciated.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Dec 2016 21:04:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Control-Output-of-ARIMA-Procedure/m-p/321005#M17575</guid>
      <dc:creator>Aaron_01</dc:creator>
      <dc:date>2016-12-23T21:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: Control Output of ARIMA Procedure</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Control-Output-of-ARIMA-Procedure/m-p/321008#M17576</link>
      <description>Hi:&lt;BR /&gt;  Instead of using the NOPRINT option, investigate the use of ODS SELECT to select only the output objects you want. Here's a paper that discusses the use of ODS TRACE first to find out the names of the objects (which you already seem to have found) and then ODS SELECT to select only the objects you want to output. Then the others will be internally created, but not sent forward to the destination.&lt;BR /&gt;cynthia&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://support.sas.com/resources/papers/proceedings13/039-2013.pdf" target="_blank"&gt;http://support.sas.com/resources/papers/proceedings13/039-2013.pdf&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://analytics.ncsu.edu/sesug/2009/RV003.Reich.pdf" target="_blank"&gt;http://analytics.ncsu.edu/sesug/2009/RV003.Reich.pdf&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.lexjansen.com/nesug/nesug12/cc/cc03.pdf" target="_blank"&gt;http://www.lexjansen.com/nesug/nesug12/cc/cc03.pdf&lt;/A&gt;</description>
      <pubDate>Fri, 23 Dec 2016 21:29:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Control-Output-of-ARIMA-Procedure/m-p/321008#M17576</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2016-12-23T21:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: Control Output of ARIMA Procedure</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Control-Output-of-ARIMA-Procedure/m-p/321026#M17578</link>
      <description>&lt;P&gt;Perfect. ODS SELECT was exactly what I needed. Thanks Cynthia!&lt;/P&gt;</description>
      <pubDate>Sat, 24 Dec 2016 04:53:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Control-Output-of-ARIMA-Procedure/m-p/321026#M17578</guid>
      <dc:creator>Aaron_01</dc:creator>
      <dc:date>2016-12-24T04:53:14Z</dc:date>
    </item>
  </channel>
</rss>

