<?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 ODS tables without printing in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Regression-ODS-tables-without-printing/m-p/393333#M94707</link>
    <description>&lt;P&gt;Yes, you can turn off the RESULTS (the "treeview control") by using&lt;/P&gt;
&lt;P&gt;ODS NORESULTS&lt;/P&gt;
&lt;P&gt;and then run the procedure. You can turn it back on with&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ODS RESULTS&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please DO NOT use ODS CLOSE _ALL_. Instead use&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ODS EXCLUDE ALL;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.sas.com/content/iml/2015/05/28/five-reasons-ods-exclude.html" target="_self"&gt;They are not the same, and ODS EXCLUDE is easier to use.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can read all about how to suppress printed output while using ODS OUTPUT to save results in the article&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.sas.com/content/iml/2013/05/24/turn-off-ods-for-simulations.html" target="_self"&gt;"Turn off ODS when running simulations in SAS"&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 05 Sep 2017 18:29:59 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2017-09-05T18:29:59Z</dc:date>
    <item>
      <title>Regression ODS tables without printing</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Regression-ODS-tables-without-printing/m-p/393007#M94620</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am doing the following regressions:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics off;
ods output parameterestimates = parms;
ods output anova = an;
ods output FitStatistics = fitstats;
proc reg data=sashelp.cars;
m1: model Invoice = EngineSize Cylinders;
m2: model invoice = Horsepower MPG_City Weight;
run;
ods graphics on;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I am getting the regression results in the 3 tables, but I am also getting the results printed on the Results Viewer.&lt;/P&gt;
&lt;P&gt;When I include the NOPRINT option the ODS doesn't output the tables. Is it possibe somehow to have the ODS tables and not having the results printed? The reason is that I am doing dozens of regressions for different models.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2017 14:58:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Regression-ODS-tables-without-printing/m-p/393007#M94620</guid>
      <dc:creator>ilikesas</dc:creator>
      <dc:date>2017-09-04T14:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: Regression ODS tables without printing</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Regression-ODS-tables-without-printing/m-p/393009#M94621</link>
      <description>&lt;P&gt;You can set each destination on/off as you want, for instance:&lt;/P&gt;
&lt;P&gt;ods listing close;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or you can turn off all ods dedstinations with:&lt;/P&gt;
&lt;P&gt;ods _all_ close;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then you can turn them back on as needed.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2017 15:09:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Regression-ODS-tables-without-printing/m-p/393009#M94621</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-09-04T15:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: Regression ODS tables without printing</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Regression-ODS-tables-without-printing/m-p/393012#M94622</link>
      <description>&lt;P&gt;Hi RW9,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for the code. I ran it and obtained the 3 tables in the Explorer window without printing, just like I wanted.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a small question: In the Results window, I see the branching of each model, which leads to the same 3 tables, so I have the 3 tables multiplied by the number of models. I just want to make sure that when I run dozens of regressions this branching process doesn't take too much memory and as a result crushes my calculations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks! &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2017 15:32:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Regression-ODS-tables-without-printing/m-p/393012#M94622</guid>
      <dc:creator>ilikesas</dc:creator>
      <dc:date>2017-09-04T15:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: Regression ODS tables without printing</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Regression-ODS-tables-without-printing/m-p/393112#M94657</link>
      <description>&lt;P&gt;I think thats more of a stats specific question relating to your model, as the models run seqeuntialy (I presume), they should only need the maximum needed for each run at any one point, so if your model runs fine in each case on its own it should be fine overall - unless you runout of disk space. &amp;nbsp;But thats just guessing, you will have to try it.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2017 08:06:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Regression-ODS-tables-without-printing/m-p/393112#M94657</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-09-05T08:06:50Z</dc:date>
    </item>
    <item>
      <title>Re: Regression ODS tables without printing</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Regression-ODS-tables-without-printing/m-p/393333#M94707</link>
      <description>&lt;P&gt;Yes, you can turn off the RESULTS (the "treeview control") by using&lt;/P&gt;
&lt;P&gt;ODS NORESULTS&lt;/P&gt;
&lt;P&gt;and then run the procedure. You can turn it back on with&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ODS RESULTS&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please DO NOT use ODS CLOSE _ALL_. Instead use&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ODS EXCLUDE ALL;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.sas.com/content/iml/2015/05/28/five-reasons-ods-exclude.html" target="_self"&gt;They are not the same, and ODS EXCLUDE is easier to use.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can read all about how to suppress printed output while using ODS OUTPUT to save results in the article&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.sas.com/content/iml/2013/05/24/turn-off-ods-for-simulations.html" target="_self"&gt;"Turn off ODS when running simulations in SAS"&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2017 18:29:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Regression-ODS-tables-without-printing/m-p/393333#M94707</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-09-05T18:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: Regression ODS tables without printing</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Regression-ODS-tables-without-printing/m-p/394524#M95085</link>
      <description>&lt;P&gt;Thanks Rick for the advice!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But how do I undo &amp;nbsp;&lt;SPAN&gt;ODS EXCLUDE ALL; like this again I can ahve the printed results?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Sep 2017 17:42:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Regression-ODS-tables-without-printing/m-p/394524#M95085</guid>
      <dc:creator>ilikesas</dc:creator>
      <dc:date>2017-09-10T17:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: Regression ODS tables without printing</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Regression-ODS-tables-without-printing/m-p/394535#M95093</link>
      <description>&lt;P&gt;That information (and more!) is&amp;nbsp;in the links that I provided.&lt;/P&gt;</description>
      <pubDate>Sun, 10 Sep 2017 19:18:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Regression-ODS-tables-without-printing/m-p/394535#M95093</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-09-10T19:18:49Z</dc:date>
    </item>
  </channel>
</rss>

