<?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: Enterprise Guide &amp;amp; ETS PROC AUTOREG and Fit Diagnostic Plots in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Enterprise-Guide-amp-ETS-PROC-AUTOREG-and-Fit-Diagnostic-Plots/m-p/892344#M43617</link>
    <description>&lt;P&gt;My bad for not including the log with my first post. The solution for EG is adding "ods graphic on;"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's the original log.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1 The SAS System 09:48 Friday, September 1, 2023&lt;/P&gt;
&lt;P&gt;1 ;*';*";*/;quit;run;&lt;BR /&gt;2 OPTIONS PAGENO=MIN;&lt;BR /&gt;3 %LET _CLIENTTASKLABEL='Program';&lt;BR /&gt;4 %LET _CLIENTPROCESSFLOWNAME='Standalone Not In Project';&lt;BR /&gt;5 %LET _CLIENTPROJECTPATH='';&lt;BR /&gt;6 %LET _CLIENTPROJECTPATHHOST='';&lt;BR /&gt;7 %LET _CLIENTPROJECTNAME='';&lt;BR /&gt;8 %LET _SASPROGRAMFILE='';&lt;BR /&gt;9 %LET _SASPROGRAMFILEHOST='';&lt;BR /&gt;10 &lt;BR /&gt;11 ODS _ALL_ CLOSE;&lt;BR /&gt;12 OPTIONS DEV=SVG;&lt;BR /&gt;13 GOPTIONS XPIXELS=0 YPIXELS=0;&lt;BR /&gt;14 %macro HTML5AccessibleGraphSupported;&lt;BR /&gt;15 %if %_SAS_VERCOMP_FV(9,4,4, 0,0,0) &amp;gt;= 0 %then ACCESSIBLE_GRAPH;&lt;BR /&gt;16 %mend;&lt;BR /&gt;17 FILENAME EGHTML TEMP;&lt;BR /&gt;18 ODS HTML5(ID=EGHTML) FILE=EGHTML&lt;BR /&gt;19 OPTIONS(BITMAP_MODE='INLINE')&lt;BR /&gt;20 %HTML5AccessibleGraphSupported&lt;BR /&gt;21 ENCODING='utf-8'&lt;BR /&gt;22 STYLE=HTMLBlue&lt;BR /&gt;23 NOGTITLE&lt;BR /&gt;24 NOGFOOTNOTE&lt;BR /&gt;25 GPATH=&amp;amp;sasworklocation&lt;BR /&gt;26 ;&lt;BR /&gt;NOTE: Writing HTML5(EGHTML) Body file: EGHTML&lt;BR /&gt;27 &lt;BR /&gt;28 /*--------------------------------------------------------------&lt;BR /&gt;29 &lt;BR /&gt;30 SAS Sample Library&lt;BR /&gt;31 &lt;BR /&gt;32 Name: autex01.sas&lt;BR /&gt;33 Description: Example program from SAS/ETS User's Guide,&lt;BR /&gt;34 The AUTOREG Procedure&lt;BR /&gt;35 Title: Analysis of Real Output Series&lt;BR /&gt;36 Product: SAS/ETS Software&lt;BR /&gt;37 Keys: autoregression&lt;BR /&gt;38 PROC: AUTOREG&lt;BR /&gt;39 Notes:&lt;BR /&gt;40 &lt;BR /&gt;41 --------------------------------------------------------------*/&lt;BR /&gt;42 &lt;BR /&gt;43 title 'Analysis of Real GNP';&lt;BR /&gt;44 data gnp;&lt;BR /&gt;45 date = intnx( 'year', '01jan1901'd, _n_-1 );&lt;BR /&gt;46 format date year4.;&lt;BR /&gt;47 input x @@;&lt;BR /&gt;48 y = log(x);&lt;BR /&gt;49 dy = dif(y);&lt;BR /&gt;50 t = _n_;&lt;BR /&gt;51 label y = 'Real GNP'&lt;BR /&gt;52 dy = 'First Difference of Y'&lt;BR /&gt;53 t = 'Time Trend';&lt;BR /&gt;54 datalines;&lt;/P&gt;
&lt;P&gt;NOTE: SAS went to a new line when INPUT statement reached past the end of a line.&lt;BR /&gt;NOTE: The data set WORK.GNP has 83 observations and 5 variables.&lt;BR /&gt;2 The SAS System 09:48 Friday, September 1, 2023&lt;/P&gt;
&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.02 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;
&lt;P&gt;66 ;&lt;BR /&gt;67 * ... datalines omitted ... *;&lt;BR /&gt;68 &lt;BR /&gt;69 &lt;BR /&gt;70 proc sgplot data=gnp noautolegend;&lt;BR /&gt;71 scatter x=date y=y;&lt;BR /&gt;72 xaxis grid values=('01jan1901'd '01jan1911'd '01jan1921'd '01jan1931'd&lt;BR /&gt;73 '01jan1941'd '01jan1951'd '01jan1961'd '01jan1971'd&lt;BR /&gt;74 '01jan1981'd '01jan1991'd);&lt;BR /&gt;75 run;&lt;/P&gt;
&lt;P&gt;NOTE: PROCEDURE SGPLOT used (Total process time):&lt;BR /&gt;real time 5.02 seconds&lt;BR /&gt;cpu time 0.29 seconds&lt;BR /&gt;&lt;BR /&gt;NOTE: This SAS session is using a registry in WORK. All changes will be lost at the end of this session.&lt;BR /&gt;NOTE: There were 83 observations read from the data set WORK.GNP.&lt;/P&gt;
&lt;P&gt;76 &lt;BR /&gt;77 proc autoreg data=gnp;&lt;BR /&gt;78 model y = t / nlag=2 method=ml;&lt;BR /&gt;79 run;&lt;/P&gt;
&lt;P&gt;NOTE: PROCEDURE AUTOREG used (Total process time):&lt;BR /&gt;real time 0.19 seconds&lt;BR /&gt;cpu time 0.14 seconds&lt;/P&gt;
&lt;P&gt;80 &lt;BR /&gt;81 proc autoreg data = gnp;&lt;BR /&gt;82 model y = / stationarity =(adf =3);&lt;BR /&gt;83 run;&lt;/P&gt;
&lt;P&gt;NOTE: PROCEDURE AUTOREG used (Total process time):&lt;BR /&gt;real time 0.06 seconds&lt;BR /&gt;cpu time 0.03 seconds&lt;/P&gt;
&lt;P&gt;84 &lt;BR /&gt;85 proc autoreg data=gnp;&lt;BR /&gt;86 model dy = / nlag=1 method=ml;&lt;BR /&gt;87 run;&lt;/P&gt;
&lt;P&gt;NOTE: PROCEDURE AUTOREG used (Total process time):&lt;BR /&gt;real time 0.13 seconds&lt;BR /&gt;cpu time 0.09 seconds&lt;/P&gt;
&lt;P&gt;88 &lt;BR /&gt;89 %LET _CLIENTTASKLABEL=;&lt;BR /&gt;90 %LET _CLIENTPROCESSFLOWNAME=;&lt;BR /&gt;91 %LET _CLIENTPROJECTPATH=;&lt;BR /&gt;92 %LET _CLIENTPROJECTPATHHOST=;&lt;BR /&gt;3 The SAS System 09:48 Friday, September 1, 2023&lt;/P&gt;
&lt;P&gt;93 %LET _CLIENTPROJECTNAME=;&lt;BR /&gt;94 %LET _SASPROGRAMFILE=;&lt;BR /&gt;95 %LET _SASPROGRAMFILEHOST=;&lt;BR /&gt;96 &lt;BR /&gt;97 ;*';*";*/;quit;run;&lt;BR /&gt;98 ODS _ALL_ CLOSE;&lt;BR /&gt;99 &lt;BR /&gt;100 &lt;BR /&gt;101 QUIT; RUN;&lt;BR /&gt;102&lt;/P&gt;</description>
    <pubDate>Fri, 01 Sep 2023 16:51:24 GMT</pubDate>
    <dc:creator>KimLeBouton</dc:creator>
    <dc:date>2023-09-01T16:51:24Z</dc:date>
    <item>
      <title>Enterprise Guide &amp; ETS PROC AUTOREG and Fit Diagnostic Plots</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Enterprise-Guide-amp-ETS-PROC-AUTOREG-and-Fit-Diagnostic-Plots/m-p/891803#M43589</link>
      <description>&lt;P&gt;I have a local SAS for Windows 9.4M7 license. It was a classic/traditional install, not a planned deployment. I oversee the install instructions for our environment.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was preparing a 10 minute session to show non-SAS users how SAS users interact with their environment: batch, Display Manager, SAS Studio (3.81) and Enterprise Guide (8.3). I used an example from SAS/ETS.&amp;nbsp;&lt;A title="autex01.sas" href="https://documentation.sas.com/doc/en/pgmsascdc/v_042/etsug/etsug_code_autex01.htm" target="_self"&gt;Click here for code.&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using default (html), Display Manager and SAS Studio produced the Fit Diagnostic Plots at the end of each PROC AUTOREG. EG only included the reports with no plots. I ran the "Check for Updates" for EG and my install stated all updates applied. The SAS log for EG doesn't note any issues.&lt;BR /&gt;&lt;BR /&gt;For Community and Technical Support, I tried searching "Enterprise Guide" "PROC AUTOREG". I didn't receive any hits.&lt;BR /&gt;&lt;BR /&gt;I haven't opened a ticket yet.&lt;BR /&gt;&lt;BR /&gt;TIA,&lt;BR /&gt;Kim&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2023 20:33:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Enterprise-Guide-amp-ETS-PROC-AUTOREG-and-Fit-Diagnostic-Plots/m-p/891803#M43589</guid>
      <dc:creator>KimLeBouton</dc:creator>
      <dc:date>2023-08-30T20:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: Enterprise Guide &amp; ETS PROC AUTOREG and Fit Diagnostic Plots</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Enterprise-Guide-amp-ETS-PROC-AUTOREG-and-Fit-Diagnostic-Plots/m-p/891839#M43591</link>
      <description>&lt;P&gt;Can you show us the LOG from the EG code that didn't show the plots? Include the code and all notes. Sometimes we'll see something that is just enough different from expected to provide a hint.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2023 01:55:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Enterprise-Guide-amp-ETS-PROC-AUTOREG-and-Fit-Diagnostic-Plots/m-p/891839#M43591</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-08-31T01:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: Enterprise Guide &amp; ETS PROC AUTOREG and Fit Diagnostic Plots</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Enterprise-Guide-amp-ETS-PROC-AUTOREG-and-Fit-Diagnostic-Plots/m-p/892203#M43606</link>
      <description>&lt;P&gt;Try turning ODS GRAPHICS on when running the example. It worked for me.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics on;

proc sgplot data=gnp noautolegend;
   scatter x=date y=y;
   xaxis grid values=('01jan1901'd '01jan1911'd '01jan1921'd '01jan1931'd
             '01jan1941'd '01jan1951'd '01jan1961'd '01jan1971'd
             '01jan1981'd '01jan1991'd);
run;

proc autoreg data=gnp;
   model y = t / nlag=2 method=ml;
run;

proc autoreg data = gnp;
   model y = / stationarity =(adf =3);
run;

proc autoreg data=gnp;
   model dy = / nlag=1 method=ml;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 01 Sep 2023 01:18:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Enterprise-Guide-amp-ETS-PROC-AUTOREG-and-Fit-Diagnostic-Plots/m-p/892203#M43606</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2023-09-01T01:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: Enterprise Guide &amp; ETS PROC AUTOREG and Fit Diagnostic Plots</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Enterprise-Guide-amp-ETS-PROC-AUTOREG-and-Fit-Diagnostic-Plots/m-p/892343#M43616</link>
      <description>This did the trick. Thank you.&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Sep 2023 16:46:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Enterprise-Guide-amp-ETS-PROC-AUTOREG-and-Fit-Diagnostic-Plots/m-p/892343#M43616</guid>
      <dc:creator>KimLeBouton</dc:creator>
      <dc:date>2023-09-01T16:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: Enterprise Guide &amp; ETS PROC AUTOREG and Fit Diagnostic Plots</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Enterprise-Guide-amp-ETS-PROC-AUTOREG-and-Fit-Diagnostic-Plots/m-p/892344#M43617</link>
      <description>&lt;P&gt;My bad for not including the log with my first post. The solution for EG is adding "ods graphic on;"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's the original log.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1 The SAS System 09:48 Friday, September 1, 2023&lt;/P&gt;
&lt;P&gt;1 ;*';*";*/;quit;run;&lt;BR /&gt;2 OPTIONS PAGENO=MIN;&lt;BR /&gt;3 %LET _CLIENTTASKLABEL='Program';&lt;BR /&gt;4 %LET _CLIENTPROCESSFLOWNAME='Standalone Not In Project';&lt;BR /&gt;5 %LET _CLIENTPROJECTPATH='';&lt;BR /&gt;6 %LET _CLIENTPROJECTPATHHOST='';&lt;BR /&gt;7 %LET _CLIENTPROJECTNAME='';&lt;BR /&gt;8 %LET _SASPROGRAMFILE='';&lt;BR /&gt;9 %LET _SASPROGRAMFILEHOST='';&lt;BR /&gt;10 &lt;BR /&gt;11 ODS _ALL_ CLOSE;&lt;BR /&gt;12 OPTIONS DEV=SVG;&lt;BR /&gt;13 GOPTIONS XPIXELS=0 YPIXELS=0;&lt;BR /&gt;14 %macro HTML5AccessibleGraphSupported;&lt;BR /&gt;15 %if %_SAS_VERCOMP_FV(9,4,4, 0,0,0) &amp;gt;= 0 %then ACCESSIBLE_GRAPH;&lt;BR /&gt;16 %mend;&lt;BR /&gt;17 FILENAME EGHTML TEMP;&lt;BR /&gt;18 ODS HTML5(ID=EGHTML) FILE=EGHTML&lt;BR /&gt;19 OPTIONS(BITMAP_MODE='INLINE')&lt;BR /&gt;20 %HTML5AccessibleGraphSupported&lt;BR /&gt;21 ENCODING='utf-8'&lt;BR /&gt;22 STYLE=HTMLBlue&lt;BR /&gt;23 NOGTITLE&lt;BR /&gt;24 NOGFOOTNOTE&lt;BR /&gt;25 GPATH=&amp;amp;sasworklocation&lt;BR /&gt;26 ;&lt;BR /&gt;NOTE: Writing HTML5(EGHTML) Body file: EGHTML&lt;BR /&gt;27 &lt;BR /&gt;28 /*--------------------------------------------------------------&lt;BR /&gt;29 &lt;BR /&gt;30 SAS Sample Library&lt;BR /&gt;31 &lt;BR /&gt;32 Name: autex01.sas&lt;BR /&gt;33 Description: Example program from SAS/ETS User's Guide,&lt;BR /&gt;34 The AUTOREG Procedure&lt;BR /&gt;35 Title: Analysis of Real Output Series&lt;BR /&gt;36 Product: SAS/ETS Software&lt;BR /&gt;37 Keys: autoregression&lt;BR /&gt;38 PROC: AUTOREG&lt;BR /&gt;39 Notes:&lt;BR /&gt;40 &lt;BR /&gt;41 --------------------------------------------------------------*/&lt;BR /&gt;42 &lt;BR /&gt;43 title 'Analysis of Real GNP';&lt;BR /&gt;44 data gnp;&lt;BR /&gt;45 date = intnx( 'year', '01jan1901'd, _n_-1 );&lt;BR /&gt;46 format date year4.;&lt;BR /&gt;47 input x @@;&lt;BR /&gt;48 y = log(x);&lt;BR /&gt;49 dy = dif(y);&lt;BR /&gt;50 t = _n_;&lt;BR /&gt;51 label y = 'Real GNP'&lt;BR /&gt;52 dy = 'First Difference of Y'&lt;BR /&gt;53 t = 'Time Trend';&lt;BR /&gt;54 datalines;&lt;/P&gt;
&lt;P&gt;NOTE: SAS went to a new line when INPUT statement reached past the end of a line.&lt;BR /&gt;NOTE: The data set WORK.GNP has 83 observations and 5 variables.&lt;BR /&gt;2 The SAS System 09:48 Friday, September 1, 2023&lt;/P&gt;
&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.02 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;
&lt;P&gt;66 ;&lt;BR /&gt;67 * ... datalines omitted ... *;&lt;BR /&gt;68 &lt;BR /&gt;69 &lt;BR /&gt;70 proc sgplot data=gnp noautolegend;&lt;BR /&gt;71 scatter x=date y=y;&lt;BR /&gt;72 xaxis grid values=('01jan1901'd '01jan1911'd '01jan1921'd '01jan1931'd&lt;BR /&gt;73 '01jan1941'd '01jan1951'd '01jan1961'd '01jan1971'd&lt;BR /&gt;74 '01jan1981'd '01jan1991'd);&lt;BR /&gt;75 run;&lt;/P&gt;
&lt;P&gt;NOTE: PROCEDURE SGPLOT used (Total process time):&lt;BR /&gt;real time 5.02 seconds&lt;BR /&gt;cpu time 0.29 seconds&lt;BR /&gt;&lt;BR /&gt;NOTE: This SAS session is using a registry in WORK. All changes will be lost at the end of this session.&lt;BR /&gt;NOTE: There were 83 observations read from the data set WORK.GNP.&lt;/P&gt;
&lt;P&gt;76 &lt;BR /&gt;77 proc autoreg data=gnp;&lt;BR /&gt;78 model y = t / nlag=2 method=ml;&lt;BR /&gt;79 run;&lt;/P&gt;
&lt;P&gt;NOTE: PROCEDURE AUTOREG used (Total process time):&lt;BR /&gt;real time 0.19 seconds&lt;BR /&gt;cpu time 0.14 seconds&lt;/P&gt;
&lt;P&gt;80 &lt;BR /&gt;81 proc autoreg data = gnp;&lt;BR /&gt;82 model y = / stationarity =(adf =3);&lt;BR /&gt;83 run;&lt;/P&gt;
&lt;P&gt;NOTE: PROCEDURE AUTOREG used (Total process time):&lt;BR /&gt;real time 0.06 seconds&lt;BR /&gt;cpu time 0.03 seconds&lt;/P&gt;
&lt;P&gt;84 &lt;BR /&gt;85 proc autoreg data=gnp;&lt;BR /&gt;86 model dy = / nlag=1 method=ml;&lt;BR /&gt;87 run;&lt;/P&gt;
&lt;P&gt;NOTE: PROCEDURE AUTOREG used (Total process time):&lt;BR /&gt;real time 0.13 seconds&lt;BR /&gt;cpu time 0.09 seconds&lt;/P&gt;
&lt;P&gt;88 &lt;BR /&gt;89 %LET _CLIENTTASKLABEL=;&lt;BR /&gt;90 %LET _CLIENTPROCESSFLOWNAME=;&lt;BR /&gt;91 %LET _CLIENTPROJECTPATH=;&lt;BR /&gt;92 %LET _CLIENTPROJECTPATHHOST=;&lt;BR /&gt;3 The SAS System 09:48 Friday, September 1, 2023&lt;/P&gt;
&lt;P&gt;93 %LET _CLIENTPROJECTNAME=;&lt;BR /&gt;94 %LET _SASPROGRAMFILE=;&lt;BR /&gt;95 %LET _SASPROGRAMFILEHOST=;&lt;BR /&gt;96 &lt;BR /&gt;97 ;*';*";*/;quit;run;&lt;BR /&gt;98 ODS _ALL_ CLOSE;&lt;BR /&gt;99 &lt;BR /&gt;100 &lt;BR /&gt;101 QUIT; RUN;&lt;BR /&gt;102&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2023 16:51:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Enterprise-Guide-amp-ETS-PROC-AUTOREG-and-Fit-Diagnostic-Plots/m-p/892344#M43617</guid>
      <dc:creator>KimLeBouton</dc:creator>
      <dc:date>2023-09-01T16:51:24Z</dc:date>
    </item>
  </channel>
</rss>

