<?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: Regression in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/446188#M15341</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have used a trick to unify the xaxis and yaxis range of the proc reg fitplot output.&lt;/P&gt;
&lt;P&gt;Knowing the extreme values of the variables related to both axis (independent and dependent variables in the context of a regression) I add these dummy values to the data set so that each by group has the same upper and lower bound corresponding to the upper left and lower right area of the plot.&lt;/P&gt;
&lt;P&gt;In order to avoid that these dummy values affect my regression, I create another dummy variable weight which gets assigned 1 for real observations and near 0 for the dummy values.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then I run the regression on this extended data set including a weight statement.&lt;/P&gt;
&lt;P&gt;As a result all fitplots share the same axis ranges and used in the context of the animated gif the transition looks smooth.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I don't suppress the by title display (NOBYLINE), I end up having a strange first frame without the correct by title.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here comes the code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics / imagefmt=GIF width=8in height=6in  ;     /* each image is 4in x 3in GIF */
options papersize=('8 in', '6 in')                    /* set size for images */
        nodate nonumber   
		/* do not show date, time, or frame number */
        animduration=0.2 animloop=yes NOANIMOVERLAY NOBYLINE     /* animation details */
        printerpath=gif animation=start;              /* start recording images to GIF */
ods printer file='C:\Users\DKXENLO\Desktop\OUTOUT\Anim3.gif' NOGTITLE DPI=300;  /* images saved into animated GIF */
 
ods html select none;                                 /* suppress screen output */

ODS EXCLUDE ParameterEstimates FitStatistics ANOVA NObs;
PROC REG DATA=WORK.ALL PLOTS(ONLY)=FITPLOT(nocli NOCLM STATS=NONE) outest=oest   ;
WEIGHT WT;
BY ASSESS_D;
MODEL SALES_RES = MESES_EFECTIVOS;
RUN;

ods html select all;                              
 
options printerpath=gif animation=stop;               /* stop recording images */
ods printer close;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Anim3.gif" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/19226iABD9266B622C507C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Anim3.gif" alt="Anim3.gif" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 16 Mar 2018 14:41:02 GMT</pubDate>
    <dc:creator>acordes</dc:creator>
    <dc:date>2018-03-16T14:41:02Z</dc:date>
    <item>
      <title>Regression</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/287946#M10181</link>
      <description>&lt;P&gt;I have run a proc reg using the following code and I get an error but I also get the desired plots. &amp;nbsp; &amp;nbsp;This code was previously used in Base SAS for regression.&amp;nbsp;Can someone tell me why I get this error although the plots are output?&lt;/P&gt;&lt;P&gt;proc reg data=er ALPHA=0.05 OUTSEB COVOUT TABLEOUT OUTEST=outsum ;&lt;/P&gt;&lt;P&gt;57&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; model change=conc;* / noprint;&lt;/P&gt;&lt;P&gt;58&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;61&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; plots=all;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _____&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 180&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;NOTE: The previous statement has been deleted.&lt;/P&gt;&lt;P&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My second question is how do I output the graphs from the plot=all to a folder in the University edition?&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2016 20:17:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/287946#M10181</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2016-07-28T20:17:12Z</dc:date>
    </item>
    <item>
      <title>Re: Regression</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/287953#M10182</link>
      <description>&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_reg_syntax01.htm" target="_self"&gt;The PLOTS= option&lt;/A&gt;&amp;nbsp;should be placed on the PROC REG statement, like this:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;proc reg data=er plots=all ...;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;...etc...;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;quit;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You program generates plots because the REG procedure automatically creates relevant plots when ODS GRAPHICS is turned on (which it is in SAS UE and other SAS interfaces). &amp;nbsp;Thus you can omit the PLOTS= option if you want to display the default graphs.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The ODS statement enables you to open destinations to save the results of an analysis. For example, if you want the tables and graphs saved in a PDF file, use &lt;A href="http://support.sas.com/documentation/cdl/en/odsug/67921/HTML/default/viewer.htm#n0mc4eolqoned0n16oy88mpj0e4g.htm" target="_self"&gt;the PDF destination&lt;/A&gt;. Want RTF? &lt;A href="http://support.sas.com/documentation/cdl/en/odsug/67921/HTML/default/viewer.htm#p1vvsv8ucnjzjnn1wq5wrlp74mdb.htm" target="_self"&gt;Use the RTF destination&lt;/A&gt;. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you want the graphs saved as PNG files, I think you can use the following statements. This is untested, since I'm not currently at a machine that has SAS UE installed. Write back if it doen't work:&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;ods html gpath="/folders/myfolders/'; &amp;nbsp; /* folder recognized by SAS UE */&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;proc reg...;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;...etc...;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;quit;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2016 20:49:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/287953#M10182</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-07-28T20:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: Regression</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/287955#M10183</link>
      <description>&lt;P&gt;You were probably using a different version of SAS - ie 9.3 or 9.2?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PLOTS is not a valid statement, as the log indicates, its been removed from the documentation.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_reg_syntax01.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_reg_syntax01.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The PLOTS=(all) statement can go in the PROC REG statement now.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc reg data=sashelp.class plots=(all);
model weight = height age;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I'm not sure what you're looking for as final output, but I would consider creating the file as RTF and then you'll have the output embedded into a Word file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods rtf file='/folders/myfolders/sample.rtf' style=journal;


*reg code;


ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you really want the graphics as output, you'll need to specify a format type and path.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2016 20:48:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/287955#M10183</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-07-28T20:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: Regression</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288085#M10184</link>
      <description>&lt;P&gt;The code used was :&lt;/P&gt;&lt;P&gt;ods rtf file='/folders/myfolders/peter_regr/sample.rtf' style=journal;&lt;BR /&gt;proc reg data=er plots=(all);&lt;BR /&gt;model change=conc;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;BR /&gt;ods rtf close;&lt;/P&gt;&lt;P&gt;This code ran okay. &amp;nbsp;The question that remains is there a way to selectively output only selected graphs &amp;nbsp;using a different syntax&amp;nbsp;for&amp;nbsp;the plots(all) command?&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2016 10:30:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288085#M10184</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2016-07-29T10:30:26Z</dc:date>
    </item>
    <item>
      <title>Re: Regression</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288087#M10185</link>
      <description>&lt;P&gt;Yes, you can use ODS to do that. We can provide code it you tell us&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) What graphs you want to output&lt;/P&gt;
&lt;P&gt;2) What format you want the graphs to be in (PNG? RTF? PDF?...)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Before the call to PROC REG add&lt;/P&gt;
&lt;P&gt;ODS TRACE ON;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then when you run the regression the SAS log will give you the names of the ODS graphs that are being produced.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2016 10:55:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288087#M10185</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-07-29T10:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: Regression</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288156#M10187</link>
      <description>&lt;P&gt;With your &amp;nbsp;suggested code I did get the names for the outputs. &amp;nbsp;The only one that I really want is the regression with confidence intervals which is part of the FitPlot. &amp;nbsp;Unfortunately I get residual plot, and fit diagnostics which I don't want outputted.&lt;/P&gt;&lt;P&gt;Since all of these are part of the FitPlot is there any way to get just the desired plot for the regression?&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2016 15:25:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288156#M10187</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2016-07-29T15:25:41Z</dc:date>
    </item>
    <item>
      <title>Re: Regression</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288157#M10188</link>
      <description>&lt;P&gt;It sounds like you are asking for PLOTS(only)=FitPlot:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc reg data=sashelp.class plots(only)=fitplot;
   model weight=height;
quit;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 29 Jul 2016 15:29:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288157#M10188</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-07-29T15:29:11Z</dc:date>
    </item>
    <item>
      <title>Re: Regression</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288162#M10189</link>
      <description>&lt;P&gt;Yes, that worked quite well. &amp;nbsp;One final question if I wanted to use the graph for a presentation is there any way for me to edit the output to remove legends etc if it were output as a word document instead of an rtf file?&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2016 15:37:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288162#M10189</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2016-07-29T15:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: Regression</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288164#M10190</link>
      <description>&lt;P&gt;You can remove the statistics by using&amp;nbsp;&lt;/P&gt;
&lt;P&gt;plots(only)=fitplot(stats=none);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_reg_syntax01.htm" target="_self"&gt;The PROC REG doc &lt;/A&gt;also shows that you can remove the prediction limits (NOCLI) and the confidence band (NOCLM). &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For more elaborate customization, I suggest learning to use the SGPLOT procedure. &lt;A href="http://support.sas.com/documentation/cdl/en/grstatproc/67909/HTML/default/viewer.htm#p0mn6vl6clqbgyn1ivs69lezdxhf.htm" target="_self"&gt;The REG statement in PROC SGPLOT &lt;/A&gt;&amp;nbsp;performs simple regression and enables complete control over all attributes.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2016 15:47:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288164#M10190</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-07-29T15:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: Regression</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288168#M10191</link>
      <description>&lt;P&gt;I will use SGplot which will give me more control similar to when one uses gplot in base SAS.&lt;/P&gt;&lt;P&gt;Thanks for the help.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2016 15:53:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288168#M10191</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2016-07-29T15:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: Regression</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288914#M10207</link>
      <description>&lt;P&gt;I am running the following code as previously discussed:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods rtf file='/folders/myfolders/peter/sample1.rtf' style=journal;&lt;/P&gt;&lt;P&gt;ods trace on;&lt;/P&gt;&lt;P&gt;proc reg data=boot plots=all;&lt;/P&gt;&lt;P&gt;model Clu=GFru;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;ods rtf close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It ran okay and I got all of the plots and the analysis of variance results. &amp;nbsp;My question is how does one get the observed and predicted values (slope, intercept etc) output as well as their 90% confidence intervals in a table?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Aug 2016 12:43:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288914#M10207</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2016-08-02T12:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: Regression</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288920#M10208</link>
      <description>&lt;P&gt;Does including the following statement help?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;output out = predicted p=p lcl =lcl lclm =lclm ucl =ucl uclm =uclm;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Aug 2016 13:03:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288920#M10208</guid>
      <dc:creator>djrisks</dc:creator>
      <dc:date>2016-08-02T13:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: Regression</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288926#M10209</link>
      <description>&lt;P&gt;I put it in but got no output although it works with base SAS but I guess it may not be the proper syntax for University SAS. &amp;nbsp;I have trace on for my ODS and there is an output &amp;nbsp;called FitStatistics which I have tried to add to the code as:&lt;/P&gt;&lt;P&gt;proc reg data =boot1 plots=all Fit Statistics;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However I get a syntax error. &amp;nbsp;Can someone tell me how to correct the statement to get the output of Fit Statistics and the plots?&lt;/P&gt;</description>
      <pubDate>Tue, 02 Aug 2016 13:23:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288926#M10209</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2016-08-02T13:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: Regression</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288928#M10210</link>
      <description>&lt;P&gt;Oh okay, maybe the syntax is different for SAS University then.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Anyway when you use ODS trace to find table names, to output them you need to add ods output too. i.e.:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods output&amp;nbsp;&lt;SPAN&gt;Fit Statistics =&amp;nbsp;Fit Statistics;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Put the above statement just before your proc reg.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Aug 2016 13:27:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288928#M10210</guid>
      <dc:creator>djrisks</dc:creator>
      <dc:date>2016-08-02T13:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: Regression</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288929#M10211</link>
      <description>&lt;P&gt;Also&amp;nbsp;&lt;SPAN&gt;Fit Statistics should be one word....&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Aug 2016 13:29:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288929#M10211</guid>
      <dc:creator>djrisks</dc:creator>
      <dc:date>2016-08-02T13:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: Regression</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288930#M10212</link>
      <description>&lt;P&gt;You may also want to use OutputStatistics too.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Aug 2016 13:30:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288930#M10212</guid>
      <dc:creator>djrisks</dc:creator>
      <dc:date>2016-08-02T13:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: Regression</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288931#M10213</link>
      <description>&lt;P&gt;This is my current code for which I get no errors but I also get no stat output in my Table CLuGfru. &amp;nbsp;The output is only the ANOVA and the graphs as before.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods rtf file='/...../CLUGFRu.rtf' style=journal;&lt;/P&gt;&lt;P&gt;ods trace on;&lt;/P&gt;&lt;P&gt;ods output FitStatistics=&lt;SPAN&gt;FitStatistics &amp;nbsp;OutputStatistics=Output&lt;SPAN&gt;Statistics;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;proc reg data=boot1 plots=all;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;model CLu=GFru;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;quit;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;ods rtf close;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;I have attached my file boot1 so that you can run the data.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Aug 2016 13:45:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288931#M10213</guid>
      <dc:creator>jacksonan123</dc:creator>
      <dc:date>2016-08-02T13:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: Regression</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288932#M10214</link>
      <description>&lt;P&gt;The output are datasets. If you want to see them you need to add Proc print.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Aug 2016 13:50:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/288932#M10214</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-08-02T13:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: Regression</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/446119#M15337</link>
      <description>&lt;P&gt;Dear Rick,&lt;/P&gt;
&lt;P&gt;I would like to fuse&amp;nbsp;this selective output facility with your trick about animated output&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2016/08/22/animation-by-statement-proc-sgplot.html" target="_self"&gt;https://blogs.sas.com/content/iml/2016/08/22/animation-by-statement-proc-sgplot.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;so that I can show how the regression behaves over time.&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="ver"&gt;I am nearly done but I&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;need to suppress the tables output which precedes the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="spellmod"&gt;fitplot&lt;/SPAN&gt;.&lt;/P&gt;
&lt;P&gt;How can I do this?&lt;/P&gt;
&lt;P&gt;I could do a workaround saving the parameterestimates, scoring the data set and plotting the results but I am looking for the most direct solution.&lt;/P&gt;
&lt;P&gt;Thanks, Arne&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Mar 2018 12:03:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/446119#M15337</guid>
      <dc:creator>acordes</dc:creator>
      <dc:date>2018-03-16T12:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: Regression</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/446124#M15338</link>
      <description>&lt;P&gt;Use ODS EXCLUDE to&amp;nbsp;name any tables that you want to exclude.&amp;nbsp; Alternatively, you can use&lt;/P&gt;
&lt;P&gt;ODS EXCLUDE ALL;&lt;/P&gt;
&lt;P&gt;ODS SELECT &amp;lt;name of tables/graphs you want&amp;gt;;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For a longer discussion about how to exclude output in SAS, see &lt;A href="https://blogs.sas.com/content/iml/2015/05/26/suppress-ods.html" target="_self"&gt;"What is the best way to suppress ODS output in SAS?"&lt;/A&gt;&amp;nbsp; If you don't know the name of the table, &lt;A href="https://blogs.sas.com/content/iml/2017/01/09/ods-output-any-statistic.html" target="_self"&gt;use ODS TRACE ON to find the name of the ODS object.&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Mar 2018 12:16:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression/m-p/446124#M15338</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2018-03-16T12:16:09Z</dc:date>
    </item>
  </channel>
</rss>

