<?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 Suppressing all SAS headings in PROC REG in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Suppressing-all-SAS-headings-in-PROC-REG/m-p/17827#M514</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This may be moot since your client is already happy with what you have, but you can change most headers and titles with some fairly simple modifications to the template the drives them.&amp;nbsp; If interested, take a look at: &lt;A href="http://www2.sas.com/proceedings/sugi26/p001-26.pdf"&gt;http://www2.sas.com/proceedings/sugi26/p001-26.pdf&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Dec 2011 18:36:17 GMT</pubDate>
    <dc:creator>art297</dc:creator>
    <dc:date>2011-12-20T18:36:17Z</dc:date>
    <item>
      <title>Suppressing all SAS headings in PROC REG</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Suppressing-all-SAS-headings-in-PROC-REG/m-p/17824#M511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;/* Bogus dataset for example */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;filename xls 'TEST.XLS.OUTPUT' disp=new;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;ods html file=xls style=minimal rs=none;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;ods listing off;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;ods noptitle;&amp;nbsp;&amp;nbsp; /* Suppresses "The REG Procedure" in output html */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;data a;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; do i = 1 to 100;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; t = i * 50;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; height: 8pt;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;proc reg data=a;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; title1 'Sample MODEL output';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; /* More title statements */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; model i=t;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;quit;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;The output is downloaded and opened in Excel.&amp;nbsp; SAS is still generating the following title lines:&lt;BR /&gt;Model: MODEL1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;Dependent variable: i&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;I am using title1,2 etc... to describe what the model statement and dependent variable are doing. I&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;don't want the 2 lines SAS is generating.&amp;nbsp; I can't seem to find any option to turn these 2 lines off.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif;"&gt;Any help appreciated.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; height: 8pt;"&gt;&lt;SPAN style="font-family: courier new,courier;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2011 17:10:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Suppressing-all-SAS-headings-in-PROC-REG/m-p/17824#M511</guid>
      <dc:creator>DavidJ</dc:creator>
      <dc:date>2011-12-20T17:10:38Z</dc:date>
    </item>
    <item>
      <title>Suppressing all SAS headings in PROC REG</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Suppressing-all-SAS-headings-in-PROC-REG/m-p/17825#M512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know a simple way to supress those headings, but I typically don't use the standard output from a regression like that to display in my final output. &lt;/P&gt;&lt;P&gt;I'll use the ods table statements to get the observations I want and then print them using proc print. It also means I have more control of how the output looks and what is output, because sometimes I want only the estimates and p-value (not the test statistic) and R-squared and adjusted, not all. The tables have more info than the default output so you do need to customize it for sure. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Possibly a suggestion at any rate. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods select none;&lt;/P&gt;&lt;P&gt;proc reg data=sashelp.class;&lt;/P&gt;&lt;P&gt;model height=weight age;&lt;/P&gt;&lt;P&gt;ods output nobs=numbers anova=anova fitstatistics=fit parameterestimates=param;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods select all;&lt;/P&gt;&lt;P&gt;proc print data=numbers noobs;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc print data=anova noobs;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc print data=fit noobs;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc print data=param noobs;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2011 17:28:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Suppressing-all-SAS-headings-in-PROC-REG/m-p/17825#M512</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2011-12-20T17:28:19Z</dc:date>
    </item>
    <item>
      <title>Suppressing all SAS headings in PROC REG</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Suppressing-all-SAS-headings-in-PROC-REG/m-p/17826#M513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.&amp;nbsp; The client is happy enough with the output the way it is from PROC REG.&amp;nbsp; I don't want to confuse&lt;/P&gt;&lt;P&gt;him by scrambling the output around.&amp;nbsp; For now, I can edit the spreadsheet and remove the superflous line,&lt;/P&gt;&lt;P&gt;which only appears twice (the code has 2 PROC REGs in it).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2011 17:51:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Suppressing-all-SAS-headings-in-PROC-REG/m-p/17826#M513</guid>
      <dc:creator>DavidJ</dc:creator>
      <dc:date>2011-12-20T17:51:48Z</dc:date>
    </item>
    <item>
      <title>Suppressing all SAS headings in PROC REG</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Suppressing-all-SAS-headings-in-PROC-REG/m-p/17827#M514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This may be moot since your client is already happy with what you have, but you can change most headers and titles with some fairly simple modifications to the template the drives them.&amp;nbsp; If interested, take a look at: &lt;A href="http://www2.sas.com/proceedings/sugi26/p001-26.pdf"&gt;http://www2.sas.com/proceedings/sugi26/p001-26.pdf&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2011 18:36:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Suppressing-all-SAS-headings-in-PROC-REG/m-p/17827#M514</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-12-20T18:36:17Z</dc:date>
    </item>
  </channel>
</rss>

