<?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 How to stop outputting PROC SURVEYREG results in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-stop-outputting-PROC-SURVEYREG-results/m-p/603434#M174828</link>
    <description>&lt;P&gt;How can I stop SAS from displaying results in the Results Viewer - SAS Output widow after running a PROC SURVEYREG step. My code is:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods output ParameterEstimates=alpha_est;
	proc surveyreg data=have;
		by portfolio;
		model r= mktrf SMB HML ;output out=x r=e;
	run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I know that I set ODS OUTPUT like that so I can get export the regression estimates. Is there a way to achieve that without displaying the results?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Tue, 12 Nov 2019 05:09:55 GMT</pubDate>
    <dc:creator>somebody</dc:creator>
    <dc:date>2019-11-12T05:09:55Z</dc:date>
    <item>
      <title>How to stop outputting PROC SURVEYREG results</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-stop-outputting-PROC-SURVEYREG-results/m-p/603434#M174828</link>
      <description>&lt;P&gt;How can I stop SAS from displaying results in the Results Viewer - SAS Output widow after running a PROC SURVEYREG step. My code is:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods output ParameterEstimates=alpha_est;
	proc surveyreg data=have;
		by portfolio;
		model r= mktrf SMB HML ;output out=x r=e;
	run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I know that I set ODS OUTPUT like that so I can get export the regression estimates. Is there a way to achieve that without displaying the results?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2019 05:09:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-stop-outputting-PROC-SURVEYREG-results/m-p/603434#M174828</guid>
      <dc:creator>somebody</dc:creator>
      <dc:date>2019-11-12T05:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop outputting PROC SURVEYREG results</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-stop-outputting-PROC-SURVEYREG-results/m-p/603436#M174830</link>
      <description>&lt;P&gt;wrap in "ods exclude all;" ... "ods exclude none;" (example from docs)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
   input City $ 1-16 LFPR1972 LFPR1968; 
   datalines; 
New York        .45     .42 
Los Angeles     .50     .50 
Chicago         .52     .52 
Philadelphia    .45     .45 
Detroit         .46     .43 
San Francisco   .55     .55 
Boston          .60     .45 
Pittsburgh      .49     .34  
St. Louis       .35     .45 
Connecticut     .55     .54 
Washington D.C. .52     .42 
Cincinnati      .53     .51 
Baltimore       .57     .49 
Newark          .53     .54 
Minn/St. Paul   .59     .50 
Buffalo         .64     .58 
Houston         .50     .49 
Patterson       .57     .56 
Dallas          .64     .63 
;
run;

ods exclude all;
title 'Study of Labor Force Participation Rates of Women';
proc surveyreg data=have total=200;
   model LFPR1972 = LFPR1968;
   ods output ParameterEstimates=alpha_est;
run;
ods exclude none;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;-unison&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2019 06:04:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-stop-outputting-PROC-SURVEYREG-results/m-p/603436#M174830</guid>
      <dc:creator>unison</dc:creator>
      <dc:date>2019-11-12T06:04:14Z</dc:date>
    </item>
  </channel>
</rss>

