<?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: Using PROC ARIMA and ODS Graphics in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Using-PROC-ARIMA-and-ODS-Graphics/m-p/224715#M8162</link>
    <description>&lt;P&gt;Post the code that you are using to call PROC ARIMA.&amp;nbsp; Are you specifying the PLOTS= option on the PROC ARIMA statement?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is an example in the documentation that shows how to request ODS graphics: &lt;A href="http://support.sas.com/documentation/cdl/en/etsug/66100/HTML/default/viewer.htm#etsug_arima_details51.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/etsug/66100/HTML/default/viewer.htm#etsug_arima_details51.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 09 Sep 2015 12:02:27 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2015-09-09T12:02:27Z</dc:date>
    <item>
      <title>Using PROC ARIMA and ODS Graphics</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Using-PROC-ARIMA-and-ODS-Graphics/m-p/224545#M8161</link>
      <description>&lt;P&gt;Hi All-&lt;/P&gt;&lt;P&gt;I am using SAS 9.3 TS Level 1M2. &amp;nbsp;I've been using PROC ARIMA for a while now, but would like to get the plots with color. &amp;nbsp;All I can seem to get are the basic line printer plots. &amp;nbsp;I have looked in tools -&amp;gt; options, and validate that the ODS Graphics is on. &amp;nbsp;I have also tried using the 'ods graphics on;' statement. &amp;nbsp;But all I can get is the same result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could someone please give me some guidance as to what I may be missing?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Much appreciated!&lt;/P&gt;&lt;P&gt;-Kyle&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2015 01:09:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Using-PROC-ARIMA-and-ODS-Graphics/m-p/224545#M8161</guid>
      <dc:creator>Kyle75</dc:creator>
      <dc:date>2015-09-09T01:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: Using PROC ARIMA and ODS Graphics</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Using-PROC-ARIMA-and-ODS-Graphics/m-p/224715#M8162</link>
      <description>&lt;P&gt;Post the code that you are using to call PROC ARIMA.&amp;nbsp; Are you specifying the PLOTS= option on the PROC ARIMA statement?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is an example in the documentation that shows how to request ODS graphics: &lt;A href="http://support.sas.com/documentation/cdl/en/etsug/66100/HTML/default/viewer.htm#etsug_arima_details51.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/etsug/66100/HTML/default/viewer.htm#etsug_arima_details51.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2015 12:02:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Using-PROC-ARIMA-and-ODS-Graphics/m-p/224715#M8162</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2015-09-09T12:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: Using PROC ARIMA and ODS Graphics</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Using-PROC-ARIMA-and-ODS-Graphics/m-p/224755#M8164</link>
      <description>&lt;P&gt;Hi Rick-&lt;/P&gt;&lt;P&gt;Thanks for the reply. &amp;nbsp;I have tried various ways, including the plots=option as well as 'ods graphics on;'. &amp;nbsp;Below are three versions of code that provide me with the same output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*example #1;&lt;BR /&gt;proc arima data=arima_data;&lt;BR /&gt;identify var=sw(52) nlag=24 scan esacf stationarity=(adf=(0,1,2,3,4));&lt;BR /&gt;estimate p=1 q=1;&lt;BR /&gt;forecast lead=21 id=t2 out=arima_fc;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*example #2;&lt;BR /&gt;proc arima data=arima_data&lt;BR /&gt;plots(unpack)=all;&lt;BR /&gt;identify var=sw(52) nlag=24 scan esacf stationarity=(adf=(0,1,2,3,4));&lt;BR /&gt;estimate p=1 q=1;&lt;BR /&gt;forecast lead=21 id=t2 out=arima_fc;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*example #3;&lt;BR /&gt;proc arima data=arima_data&lt;BR /&gt;plots(only)=(residual(smooth) forecast(forecasts));&lt;BR /&gt;identify var=sw(52) nlag=24 scan esacf stationarity=(adf=(0,1,2,3,4));&lt;BR /&gt;estimate p=1 q=1;&lt;BR /&gt;forecast lead=21 id=t2 out=arima_fc;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Log Results same for each piece of code above:&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.ARIMA_FC has 230 observations and 7 variables.&lt;BR /&gt;NOTE: The PROCEDURE ARIMA printed pages 57-62.&lt;BR /&gt;NOTE: PROCEDURE ARIMA used (Total process time):&lt;BR /&gt;real time 0.08 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;Kyle&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2015 14:46:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Using-PROC-ARIMA-and-ODS-Graphics/m-p/224755#M8164</guid>
      <dc:creator>Kyle75</dc:creator>
      <dc:date>2015-09-09T14:46:24Z</dc:date>
    </item>
  </channel>
</rss>

