<?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: Prog reg how not to print anything on the result page in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Prog-reg-how-not-to-print-anything-on-the-result-page/m-p/508675#M136649</link>
    <description>&lt;P&gt;Yes, Thank you. It works great!&lt;/P&gt;
&lt;P&gt;HHC&lt;/P&gt;</description>
    <pubDate>Tue, 30 Oct 2018 13:07:18 GMT</pubDate>
    <dc:creator>hhchenfx</dc:creator>
    <dc:date>2018-10-30T13:07:18Z</dc:date>
    <item>
      <title>Prog reg how not to print anything on the result page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Prog-reg-how-not-to-print-anything-on-the-result-page/m-p/506090#M135596</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;
&lt;P&gt;To save running time, is there anyway to tell SAS not to print anything on the result/output page.&lt;/P&gt;
&lt;P&gt;the plots=None helps but still many tables are printed.&lt;/P&gt;
&lt;P&gt;Thank you,&lt;/P&gt;
&lt;P&gt;HHCFX&lt;/P&gt;</description>
      <pubDate>Fri, 19 Oct 2018 17:57:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Prog-reg-how-not-to-print-anything-on-the-result-page/m-p/506090#M135596</guid>
      <dc:creator>hhchenfx</dc:creator>
      <dc:date>2018-10-19T17:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: Prog reg how not to print anything on the result page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Prog-reg-how-not-to-print-anything-on-the-result-page/m-p/506093#M135598</link>
      <description>&lt;P&gt;NOPRINT on the output statement should suppress other output. I would hope you are creating output data sets using the OUTEST or similar options or the OUTPUT statement. If you are using ODS OUTPUT to generate output sets you would want to set ODS SELECT to only create the ones you want.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Oct 2018 18:03:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Prog-reg-how-not-to-print-anything-on-the-result-page/m-p/506093#M135598</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-10-19T18:03:09Z</dc:date>
    </item>
    <item>
      <title>Re: Prog reg how not to print anything on the result page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Prog-reg-how-not-to-print-anything-on-the-result-page/m-p/506196#M135655</link>
      <description>&lt;P&gt;I need coefficient but the Noprint seems to suppress the creation of the output file.&lt;/P&gt;
&lt;P&gt;What should I change?&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;	ods output ParameterEstimates=my_reg_output ;
		proc reg data=all1 noprint	plots=none;
		model Y= x;
		run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 20 Oct 2018 01:28:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Prog-reg-how-not-to-print-anything-on-the-result-page/m-p/506196#M135655</guid>
      <dc:creator>hhchenfx</dc:creator>
      <dc:date>2018-10-20T01:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: Prog reg how not to print anything on the result page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Prog-reg-how-not-to-print-anything-on-the-result-page/m-p/506216#M135664</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods select none;


ods output ParameterEstimates=my_reg_output ;
		proc reg data=all1 noprint	plots=none;
		model Y= x;
		quit;

ods select all;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 20 Oct 2018 10:35:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Prog-reg-how-not-to-print-anything-on-the-result-page/m-p/506216#M135664</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-10-20T10:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: Prog reg how not to print anything on the result page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Prog-reg-how-not-to-print-anything-on-the-result-page/m-p/506343#M135726</link>
      <description>&lt;P&gt;Thanks but still no table created.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"WARNING: ODS Graphics are not produced when you specify the NOPRINT option in the PROC REG&lt;BR /&gt; statement.&lt;BR /&gt;WARNING: &lt;U&gt;Output 'ParameterEstimates' was not created&lt;/U&gt;. Make sure that the output object name,&lt;BR /&gt; label, or path is spelled correctly. Also, verify that the appropriate procedure&lt;BR /&gt; options are used to produce the requested output object. For example, verify that&lt;BR /&gt; the NOPRINT option is not used."&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Oct 2018 01:54:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Prog-reg-how-not-to-print-anything-on-the-result-page/m-p/506343#M135726</guid>
      <dc:creator>hhchenfx</dc:creator>
      <dc:date>2018-10-22T01:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: Prog reg how not to print anything on the result page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Prog-reg-how-not-to-print-anything-on-the-result-page/m-p/506411#M135761</link>
      <description>&lt;P&gt;Try this one :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods select none;
ods output  ParameterEstimates=my_reg_output ;
proc reg data=sashelp.class;
model weight=height;
quit;
ods select all;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 Oct 2018 12:24:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Prog-reg-how-not-to-print-anything-on-the-result-page/m-p/506411#M135761</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-10-22T12:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: Prog reg how not to print anything on the result page</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Prog-reg-how-not-to-print-anything-on-the-result-page/m-p/508675#M136649</link>
      <description>&lt;P&gt;Yes, Thank you. It works great!&lt;/P&gt;
&lt;P&gt;HHC&lt;/P&gt;</description>
      <pubDate>Tue, 30 Oct 2018 13:07:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Prog-reg-how-not-to-print-anything-on-the-result-page/m-p/508675#M136649</guid>
      <dc:creator>hhchenfx</dc:creator>
      <dc:date>2018-10-30T13:07:18Z</dc:date>
    </item>
  </channel>
</rss>

